fix(external_api): Fix number of participants in meeting (#12052)

This commit is contained in:
Duduman Bogdan Vlad
2022-09-06 09:51:38 +03:00
committed by yanas
parent fb402c7131
commit b709d079c9
9 changed files with 154 additions and 18 deletions

View File

@@ -55,7 +55,7 @@ import {
removeBreakoutRoom,
sendParticipantToRoom
} from '../../react/features/breakout-rooms/actions';
import { getBreakoutRooms } from '../../react/features/breakout-rooms/functions';
import { getBreakoutRooms, getRoomsInfo } from '../../react/features/breakout-rooms/functions';
import {
sendMessage,
setPrivateMessageRecipient,
@@ -846,6 +846,10 @@ function initCommands() {
callback(getBreakoutRooms(APP.store.getState()));
break;
}
case 'rooms-info': {
callback(getRoomsInfo(APP.store.getState()));
break;
}
default:
return false;
}