Employees-Index: Create new User.

This commit is contained in:
Sockenklaus
2021-11-17 03:35:49 +01:00
parent 8071e8ef91
commit 6f237ff8fa
12 changed files with 408 additions and 347 deletions

View File

@@ -2,19 +2,6 @@ type ScheduleData = [
...ScheduleMonth[]
]
type Employee = {
id: number,
first_name: string,
last_name: string,
email: string,
phone: string,
mobile: string,
role: string,
shorthand: string,
contractHours?: number
username?: string
}
type ScheduleRow = {
dates : (Date | null)[],
employees : Employee[]