user creation and invites
This commit is contained in:
3
types/next-auth.d.ts
vendored
3
types/next-auth.d.ts
vendored
@@ -6,16 +6,19 @@ declare module "next-auth" {
|
||||
id: string
|
||||
email: string
|
||||
role: "COUPLE" | "PLANNER" | "GUEST"
|
||||
username: string
|
||||
}
|
||||
}
|
||||
|
||||
interface User {
|
||||
id: string
|
||||
role: "COUPLE" | "PLANNER" | "GUEST"
|
||||
username: string
|
||||
}
|
||||
|
||||
interface JWT {
|
||||
id: string
|
||||
role: "COUPLE" | "PLANNER" | "GUEST"
|
||||
username: string
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user