mirror of
https://github.com/donpat1to/Schichtenplaner.git
synced 2025-12-01 15:05:45 +01:00
removed notes as user attribute
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user