Further renaming

This commit is contained in:
nicolas 2021-08-01 23:38:38 +02:00
parent 19374d38f7
commit d2bc02e6fc

View file

@ -111,13 +111,13 @@ export default class EventManager {
}, },
}); });
const isVideo = EventManager.isDedicatedIntegration(event.location); const isDedicated = EventManager.isDedicatedIntegration(event.location);
// First, update all calendar events. If this is a video event, don't send a mail right here. // First, update all calendar events. If this is a dedicated event, don't send a mail right here.
const results: Array<EventResult> = await this.updateAllCalendarEvents(event, booking, isVideo); const results: Array<EventResult> = await this.updateAllCalendarEvents(event, booking, isDedicated);
// If and only if event type is a video meeting, update the video meeting as well. // If and only if event type is a dedicated meeting, update the dedicated video meeting as well.
if (isVideo) { if (isDedicated) {
results.push(await this.updateVideoEvent(event, booking)); results.push(await this.updateVideoEvent(event, booking));
} }