Add max guests per RSVP feature to event creation and RSVP forms

This commit is contained in:
Ryderjj89
2025-05-16 18:27:09 -04:00
parent 05e1e30384
commit efe143ca68
4 changed files with 116 additions and 32 deletions

View File

@@ -9,6 +9,7 @@ export interface Event {
needed_items: string[];
wallpaper?: string;
rsvp_cutoff_date?: string;
max_guests_per_rsvp?: number;
}
export interface Rsvp {
@@ -22,4 +23,4 @@ export interface Rsvp {
items_bringing: string[] | string;
other_items?: string;
created_at: string;
}
}