featur add fahrmeister

This commit is contained in:
Matthias Hochmeister
2026-02-27 21:46:50 +01:00
parent da4a56ba6b
commit dbe4f52871
17 changed files with 426 additions and 152 deletions

View File

@@ -14,6 +14,7 @@ export interface User {
created_at: Date;
updated_at: Date;
preferences?: any; // JSONB
authentik_groups: string[];
}
export interface CreateUserData {
@@ -24,6 +25,7 @@ export interface CreateUserData {
given_name?: string;
family_name?: string;
profile_picture_url?: string;
authentik_groups?: string[];
}
export interface UpdateUserData {