Add assigment of crew to events and shifts
This commit is contained in:
parent
0aff9cc94a
commit
cef6b13dd1
7 changed files with 153 additions and 3 deletions
2
shared/types/schedule.d.ts
vendored
2
shared/types/schedule.d.ts
vendored
|
@ -20,6 +20,7 @@ export interface TimeSlot {
|
|||
start: string,
|
||||
end: string,
|
||||
locations: string[],
|
||||
assigned?: number[],
|
||||
interested?: number,
|
||||
}
|
||||
|
||||
|
@ -41,6 +42,7 @@ export interface ShiftSlot {
|
|||
id: string,
|
||||
start: string,
|
||||
end: string,
|
||||
assigned?: number[],
|
||||
}
|
||||
|
||||
export interface Schedule {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue