correct user settings manager (and password reset)

This commit is contained in:
LathanDevers
2026-08-04 16:51:00 +02:00
parent 84d7b7e847
commit 85adfaab2d
11 changed files with 339 additions and 78 deletions
+8
View File
@@ -0,0 +1,8 @@
export interface Company {
id: string;
name: string;
no: string;
vip_level: string;
created: string;
updated: string
}
+12
View File
@@ -0,0 +1,12 @@
export interface User {
id: string;
email: string;
emailVisibility: boolean;
verified: boolean;
name: string;
role: string;
company: string;
mfa_enabled: boolean;
created: string;
updated: string
}