ssr runner and more admin panel stuff

This commit is contained in:
Zoe
2024-09-30 00:40:54 -05:00
parent 66f8437351
commit c208e35e4c
27 changed files with 617 additions and 156 deletions

View File

@@ -2,11 +2,13 @@ export interface User {
id: string,
username: string,
email: string,
plan: {
id: number,
max_storage: number
},
plan: Plan,
usage: number,
created_at: string,
is_admin: boolean,
}
export interface Plan {
id: number,
max_storage: number
}