| 4 | export type UserRole = USER_ROLES; |
| 5 | |
| 6 | export interface User { |
| 7 | id: string; |
| 8 | email: string; |
| 9 | role: UserRole; |
| 10 | avatarUrl?: string; |
| 11 | tenantId?: string; |
| 12 | authProvider?: "local" | "cas"; |
| 13 | } |
| 14 | |
| 15 | // Session type definition |
| 16 | // After HttpOnly cookie migration, tokens live in server-managed cookies. |
nothing calls this directly
no outgoing calls
no test coverage detected