add account management

This commit is contained in:
LathanDevers
2026-08-04 14:40:57 +02:00
parent 38284dabb6
commit b3d7e312c4
5 changed files with 107 additions and 27 deletions
+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
}