Profile: Add firstname field to users

This commit is contained in:
2025-01-25 16:43:36 +01:00
parent a552865b2f
commit b207aa5e29
3 changed files with 32 additions and 14 deletions

View File

@ -7,6 +7,7 @@ export interface Graphic {
export interface User {
id: string;
username: string;
firstname: string;
avatar: string;
avatar_url?: string;
admin: boolean;