emm - use string instead of date for start/endDate

This commit is contained in:
Thomas Ruoff
2022-03-30 23:56:08 +02:00
parent 9f45eab6e7
commit c65d8df853
8 changed files with 13652 additions and 878 deletions

View File

@@ -49,9 +49,9 @@ export async function createCalendarEvent(booking: Booking): Promise<Booking> {
calendarId,
requestBody: {
summary: getSummary(booking),
// description,
start: { date: booking.start },
end: { date: booking.end },
// TODO: description,
start: { date: booking.startDate },
end: { date: booking.endDate },
},
}, {})