Changeset 3727852 for frontend/src/types.ts
- Timestamp:
- 01/26/26 17:59:16 (6 months ago)
- Branches:
- main
- Children:
- 484dc3f
- Parents:
- 4022db1
- File:
-
- 1 edited
-
frontend/src/types.ts (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
frontend/src/types.ts
r4022db1 r3727852 1 export interface UserResponse {2 username: string;3 role: "ADMIN" | "NONADMIN";4 }5 6 1 export interface User { 7 2 username: string; 8 3 fullName: string; 9 email : string;4 email?: string; 10 5 profilePhoto?: string | null; 11 6 role?: "ADMIN" | "NONADMIN";
Note:
See TracChangeset
for help on using the changeset viewer.
