feat: authentication integration
This commit is contained in:
11
web/src/types/index.ts
Normal file
11
web/src/types/index.ts
Normal file
@ -0,0 +1,11 @@
|
||||
export interface UserProfile {
|
||||
id: string;
|
||||
full_name: string;
|
||||
email: string;
|
||||
phone_number: string;
|
||||
isAdmin: boolean;
|
||||
last_login: string;
|
||||
profile_picture: string | null;
|
||||
updated_at: string;
|
||||
created_at: string;
|
||||
}
|
Reference in New Issue
Block a user