hooked up create event

This commit is contained in:
2025-11-27 13:08:33 -05:00
parent 4dc121c018
commit 81716d4a4f
6 changed files with 80 additions and 51 deletions

View File

@@ -1,15 +1,15 @@
export interface CalendarEvent {
id: number;
id?: number;
name: string;
start: Date;
end: Date;
location: string;
color: string;
description: string;
creator_id: number;
cancelled: boolean;
created_at: Date;
updated_at: Date;
creator_id?: number;
cancelled?: boolean;
created_at?: Date;
updated_at?: Date;
creator_name?: string | null;
eventSignups?: CalendarSignup[] | null;