1
0
Fork 0
mirror of https://github.com/seanmorley15/AdventureLog.git synced 2025-07-28 17:29:36 +02:00

Update the user model

This commit is contained in:
Sean Morley 2024-09-07 17:12:28 -04:00
parent 2d7fe56086
commit 1c9c74958b
2 changed files with 4 additions and 0 deletions

View file

@ -13,6 +13,8 @@ declare global {
date_joined: string | null; date_joined: string | null;
is_staff: boolean; is_staff: boolean;
profile_pic: string | null; profile_pic: string | null;
uuid: string;
public_profile: boolean;
} | null; } | null;
} }
// interface PageData {} // interface PageData {}

View file

@ -7,6 +7,8 @@ export type User = {
date_joined: string | null; date_joined: string | null;
is_staff: boolean; is_staff: boolean;
profile_pic: string | null; profile_pic: string | null;
uuid: string;
public_profile: boolean;
}; };
export type Adventure = { export type Adventure = {