Add crew designator to events

Distinguish between events for attendees to see and events that are
meant only for the crew.
This commit is contained in:
Hornwitser 2025-03-10 14:40:02 +01:00
parent 40c25f8990
commit db8393c3a9
3 changed files with 96 additions and 20 deletions

View file

@ -1,6 +1,7 @@
export interface ScheduleEvent {
name: string,
id: string,
crew?: boolean,
host?: string,
cancelled?: boolean,
description?: string,