Add draft as default status for new events
All checks were successful
Jenkins Production Deployment

This commit is contained in:
Patrick Müller 2023-05-15 21:04:09 +02:00
parent 0962a36b59
commit 0861294534
Signed by: Paddy
GPG Key ID: 37ABC11275CAABCE

View File

@ -23,7 +23,8 @@ export class EventsTableComponent implements OnInit {
startDateTime: new Date(),
endDateTime: new Date(),
createdDate: new Date(),
createdBy: UtilsService.getNameFromLocalStorage()
createdBy: UtilsService.getNameFromLocalStorage(),
status: 'DRAFT'
} as Event);
}