added hashed passwords

This commit is contained in:
2025-10-08 18:11:04 +02:00
parent a6ec865571
commit 96a36d68a9
7 changed files with 469 additions and 158 deletions

View File

@@ -6,7 +6,7 @@ export interface Employee {
role: 'admin' | 'instandhalter' | 'user';
isActive: boolean;
createdAt: string;
lastLogin?: string;
lastLogin?: string | null;
phone?: string;
department?: string;
}