source: frontend/src/types.ts@ 484dc3f

main
Last change on this file since 484dc3f was 3727852, checked in by Filip Gavrilovski <filipgavrilovski28@…>, 6 months ago

modify user response dto to store other relevant user data

  • Property mode set to 100644
File size: 142 bytes
Line 
1export interface User {
2 username: string;
3 fullName: string;
4 email?: string;
5 profilePhoto?: string | null;
6 role?: "ADMIN" | "NONADMIN";
7}
Note: See TracBrowser for help on using the repository browser.