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:
parent
9a46ea5af0
commit
f29b1f7afd
4 changed files with 15 additions and 3 deletions
|
@ -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),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue