fix(tests): bring back APP.conference.listMembers

This commit is contained in:
Hristo Terezov 2020-02-21 09:17:11 +00:00 committed by Дамян Минков
parent a4333d3a80
commit 5feaa421a8
1 changed files with 10 additions and 0 deletions

View File

@ -944,6 +944,16 @@ export default {
return user && user.isModerator();
},
/**
* Retrieve list of conference participants (without local user).
* @returns {JitsiParticipant[]}
*
* NOTE: Used by jitsi-meet-torture!
*/
listMembers() {
return room.getParticipants();
},
get membersCount() {
return room.getParticipants().length + 1;
},