feat: Organization services

This commit is contained in:
sauravdhakal12
2026-02-22 15:47:45 +05:45
parent f4c9174752
commit afed1731d2
42 changed files with 862 additions and 17 deletions

View File

@@ -5,7 +5,7 @@ model User {
lastName String
email String @unique
password String
role USER_ROLE @default(ordinary)
role USER_ROLE @default(user)
isVerified Boolean? @default(false) // TODO: Email using queue
refreshToken String?
profilePicture String?
@@ -20,5 +20,5 @@ model User {
enum USER_ROLE {
superadmin
ordinary
user
}