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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 1 deletions

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'];

View File

@ -32,6 +32,7 @@ const commands = {
e2eeKey: 'e2ee-key',
email: 'email',
hangup: 'video-hangup',
muteEveryone: 'mute-everyone',
password: 'password',
sendEndpointTextMessage: 'send-endpoint-text-message',
sendTones: 'send-tones',