mirror of
https://github.com/jambonz/jambonz-feature-server.git
synced 2025-12-20 08:40:38 +00:00
Allow joining conference as muted (#821)
* allow entering conference as muted * allow entering conference as muted
This commit is contained in:
@@ -351,7 +351,9 @@ class Conference extends Task {
|
|||||||
Object.assign(opts, {flags: {
|
Object.assign(opts, {flags: {
|
||||||
...(this.endConferenceOnExit && {endconf: true}),
|
...(this.endConferenceOnExit && {endconf: true}),
|
||||||
...(this.startConferenceOnEnter && {moderator: true}),
|
...(this.startConferenceOnEnter && {moderator: true}),
|
||||||
...((this.joinMuted || this.speakOnlyTo) && {joinMuted: true}),
|
//https://developer.signalwire.com/freeswitch/FreeSWITCH-Explained/Modules/mod_conference_3965534/
|
||||||
|
// mute | Enter conference muted
|
||||||
|
...((this.joinMuted || this.speakOnlyTo) && {mute: true}),
|
||||||
}});
|
}});
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
Reference in New Issue
Block a user