Future-proof admin interface of the api, make the api fully capable of handling event status

This commit is contained in:
2023-05-15 19:40:44 +02:00
parent b8a68c2480
commit 5e84eaea70
3 changed files with 61 additions and 13 deletions
@@ -9,7 +9,8 @@ export interface Event {
createdDate: Date;
location: string;
createdBy?: string;
createdById: number,
createdById: number;
url: string;
wholeDay: boolean;
status?: string;
}