Add notice text field to events

Add a general text field for communicating extra information that
readers of the schedule should pay special attention to, for example to
highight a change made to the event.
This commit is contained in:
Hornwitser 2025-09-06 16:20:27 +02:00
parent 9a46ea5af0
commit f29b1f7afd
4 changed files with 15 additions and 3 deletions

View file

@ -92,6 +92,7 @@ export const apiScheduleEventSchema = defineApiEntity({
crew: z.optional(z.boolean()),
host: z.optional(z.string()),
cancelled: z.optional(z.boolean()),
notice: z.optional(z.string()),
description: z.optional(z.string()),
interested: z.optional(z.number()),
slots: z.array(apiScheduleEventSlotSchema),