From 5feaa421a859d762cd3f6fee5c09819f84e42a0b Mon Sep 17 00:00:00 2001 From: Hristo Terezov Date: Fri, 21 Feb 2020 09:17:11 +0000 Subject: [PATCH] fix(tests): bring back APP.conference.listMembers --- conference.js | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/conference.js b/conference.js index f7872380c..a592dadfc 100644 --- a/conference.js +++ b/conference.js @@ -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; },