external-api: add muteEveryone command

This commit is contained in:
Alejandro Blanco
2020-05-19 08:50:21 +02:00
committed by GitHub
parent c08638da51
commit 2e2d40c1d0
2 changed files with 12 additions and 1 deletions
+11 -1
View File
@@ -16,7 +16,7 @@ import { invite } from '../../react/features/invite';
import { toggleTileView } from '../../react/features/video-layout';
import { setVideoQuality } from '../../react/features/video-quality';
import { getJitsiMeetTransport } from '../transport';
import { muteAllParticipants } from '../../react/features/remote-video-menu/actions';
import { API_ID, ENDPOINT_TEXT_MESSAGE_NAME } from './constants';
import {
processExternalDeviceRequest
@@ -71,6 +71,16 @@ function initCommands() {
sendAnalytics(createApiEvent('display.name.changed'));
APP.conference.changeLocalDisplayName(displayName);
},
'mute-everyone': () => {
sendAnalytics(createApiEvent('muted-everyone'));
const participants = APP.store.getState()['features/base/participants'];
const localIds = participants
.filter(participant => participant.local)
.filter(participant => participant.role === 'moderator')
.map(participant => participant.id);
APP.store.dispatch(muteAllParticipants(localIds));
},
'password': password => {
const { conference, passwordRequired }
= APP.store.getState()['features/base/conference'];