Add e-mail based login

This commit is contained in:
2025-03-25 17:58:26 +01:00
parent 7aff2a2ead
commit 3fe0b43372
17 changed files with 499 additions and 305 deletions

View File

@@ -4,11 +4,14 @@
export type GenericResponse = {
value: string,
message: string,
errors?: GenericResponse[],
extra?: { [index: string]: Object },
}
export type User = {
username: string,
email: string,
otp_enabled: boolean,
subscription: Subscription,
storage_space_used: number,
filesystem_storage_used: number,