minor fix
This commit is contained in:
@@ -277,6 +277,13 @@ export const meetingFields = [
|
||||
default: '',
|
||||
description: `Time zone used in the response. The default is the time zone of the calendar.`,
|
||||
},
|
||||
{
|
||||
displayName: 'Waiting Room',
|
||||
name: 'waitingRoom',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
description: 'Enable waiting room.',
|
||||
},
|
||||
{
|
||||
displayName: 'Watermark',
|
||||
name: 'watermark',
|
||||
|
||||
@@ -41,6 +41,7 @@ interface Settings {
|
||||
join_before_host?: boolean;
|
||||
mute_upon_entry?: boolean;
|
||||
watermark?: boolean;
|
||||
waiting_room?: boolean;
|
||||
audio?: string;
|
||||
alternative_hosts?: string;
|
||||
auto_recording?: string;
|
||||
@@ -278,6 +279,10 @@ export class Zoom implements INodeType {
|
||||
if (additionalFields.muteUponEntry) {
|
||||
settings.mute_upon_entry = additionalFields.muteUponEntry as boolean;
|
||||
|
||||
}
|
||||
if (additionalFields.waitingRoom) {
|
||||
settings.waiting_room = additionalFields.waitingRoom as boolean;
|
||||
|
||||
}
|
||||
|
||||
if (additionalFields.watermark) {
|
||||
|
||||
Reference in New Issue
Block a user