|
@@ -21,6 +21,7 @@ import {
|
21
|
21
|
import { isEnabled as isDropboxEnabled } from '../../react/features/dropbox';
|
22
|
22
|
import { setE2EEKey } from '../../react/features/e2ee';
|
23
|
23
|
import { invite } from '../../react/features/invite';
|
|
24
|
+import { toggleLobbyMode } from '../../react/features/lobby/actions.web';
|
24
|
25
|
import { RECORDING_TYPES } from '../../react/features/recording/constants';
|
25
|
26
|
import { getActiveSession } from '../../react/features/recording/functions';
|
26
|
27
|
import { muteAllParticipants } from '../../react/features/remote-video-menu/actions';
|
|
@@ -89,6 +90,9 @@ function initCommands() {
|
89
|
90
|
|
90
|
91
|
APP.store.dispatch(muteAllParticipants(localIds));
|
91
|
92
|
},
|
|
93
|
+ 'toggle-lobby': isLobbyEnabled => {
|
|
94
|
+ APP.store.dispatch(toggleLobbyMode(isLobbyEnabled));
|
|
95
|
+ },
|
92
|
96
|
'password': password => {
|
93
|
97
|
const { conference, passwordRequired }
|
94
|
98
|
= APP.store.getState()['features/base/conference'];
|