Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement Activity tracking #61

Closed
1 task done
Tracked by #54
bolub opened this issue Aug 11, 2023 · 0 comments · Fixed by #71
Closed
1 task done
Tracked by #54

Implement Activity tracking #61

bolub opened this issue Aug 11, 2023 · 0 comments · Fixed by #71

Comments

@bolub
Copy link
Owner

bolub commented Aug 11, 2023

References:

Model

model Activity {
    id            String   @id @default(cuid())
    timestamp     DateTime @default(now())
    userId        String
    user          User     @relation(fields: [userId], references: [id])
    contractId    String
    contract      Contract @relation(fields: [contractId], references: [id])
    action        String   // You can use this field to specify the type of activity (e.g., "Contract Created", "Contract Signed", etc.)
}

Tasks

@bolub bolub mentioned this issue Aug 11, 2023
3 tasks
@bolub bolub linked a pull request Aug 16, 2023 that will close this issue
@bolub bolub closed this as completed in #71 Aug 16, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant