mirror of
https://github.com/seanmorley15/AdventureLog.git
synced 2025-07-24 15:29:36 +02:00
Update the user model
This commit is contained in:
parent
2d7fe56086
commit
1c9c74958b
2 changed files with 4 additions and 0 deletions
2
frontend/src/app.d.ts
vendored
2
frontend/src/app.d.ts
vendored
|
@ -13,6 +13,8 @@ declare global {
|
|||
date_joined: string | null;
|
||||
is_staff: boolean;
|
||||
profile_pic: string | null;
|
||||
uuid: string;
|
||||
public_profile: boolean;
|
||||
} | null;
|
||||
}
|
||||
// interface PageData {}
|
||||
|
|
|
@ -7,6 +7,8 @@ export type User = {
|
|||
date_joined: string | null;
|
||||
is_staff: boolean;
|
||||
profile_pic: string | null;
|
||||
uuid: string;
|
||||
public_profile: boolean;
|
||||
};
|
||||
|
||||
export type Adventure = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue