mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
minor fix
This commit is contained in:
parent
34e05f0f72
commit
dee03a5e4c
|
@ -277,6 +277,13 @@ export const meetingFields = [
|
||||||
default: '',
|
default: '',
|
||||||
description: `Time zone used in the response. The default is the time zone of the calendar.`,
|
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',
|
displayName: 'Watermark',
|
||||||
name: 'watermark',
|
name: 'watermark',
|
||||||
|
|
|
@ -41,6 +41,7 @@ interface Settings {
|
||||||
join_before_host?: boolean;
|
join_before_host?: boolean;
|
||||||
mute_upon_entry?: boolean;
|
mute_upon_entry?: boolean;
|
||||||
watermark?: boolean;
|
watermark?: boolean;
|
||||||
|
waiting_room?: boolean;
|
||||||
audio?: string;
|
audio?: string;
|
||||||
alternative_hosts?: string;
|
alternative_hosts?: string;
|
||||||
auto_recording?: string;
|
auto_recording?: string;
|
||||||
|
@ -278,6 +279,10 @@ export class Zoom implements INodeType {
|
||||||
if (additionalFields.muteUponEntry) {
|
if (additionalFields.muteUponEntry) {
|
||||||
settings.mute_upon_entry = additionalFields.muteUponEntry as boolean;
|
settings.mute_upon_entry = additionalFields.muteUponEntry as boolean;
|
||||||
|
|
||||||
|
}
|
||||||
|
if (additionalFields.waitingRoom) {
|
||||||
|
settings.waiting_room = additionalFields.waitingRoom as boolean;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (additionalFields.watermark) {
|
if (additionalFields.watermark) {
|
||||||
|
|
Loading…
Reference in a new issue