This commit is contained in:
simon.franken
2026-02-18 16:08:42 +01:00
parent f5c0a0b2f7
commit 0f6e55302a
10 changed files with 29 additions and 14 deletions

View File

@@ -3,6 +3,7 @@ import { Request } from 'express';
export interface AuthenticatedUser {
id: string;
username: string;
fullName: string | null;
email: string;
}