removed notes as user attribute

This commit is contained in:
2025-10-10 18:33:13 +02:00
parent 6150907553
commit 27eea33efc
5 changed files with 5 additions and 50 deletions

View File

@@ -9,7 +9,6 @@ export interface Employee {
isActive: boolean;
createdAt: string;
lastLogin?: string | null;
notes?: string;
}
export interface CreateEmployeeRequest {
@@ -19,7 +18,6 @@ export interface CreateEmployeeRequest {
role: 'admin' | 'instandhalter' | 'user';
employeeType: 'chef' | 'neuling' | 'erfahren';
isSufficientlyIndependent: boolean;
notes?: string;
}
export interface UpdateEmployeeRequest {
@@ -28,7 +26,6 @@ export interface UpdateEmployeeRequest {
employeeType?: 'chef' | 'neuling' | 'erfahren';
isSufficientlyIndependent?: boolean;
isActive?: boolean;
notes?: string;
}
export interface Availability {