feat: add auth

This commit is contained in:
2025-12-25 22:32:04 +01:00
parent 71d915ff0f
commit e7fe00c48d
17 changed files with 1654 additions and 35 deletions

View File

@@ -0,0 +1,14 @@
export interface User {
autologinTokenUsed: string;
sub: string;
email_verified: boolean;
webservicePasswordUsed: string;
secureModeActive: string;
roles: string[];
name: string;
id: string;
preferred_username: string;
given_name: string;
family_name: string;
email: string;
}