Browse Source

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

master
Hristo Terezov 5 years ago
parent
commit
5feaa421a8
1 changed files with 10 additions and 0 deletions
  1. 10
    0
      conference.js

+ 10
- 0
conference.js View File

944
         return user && user.isModerator();
944
         return user && user.isModerator();
945
     },
945
     },
946
 
946
 
947
+    /**
948
+     * Retrieve list of conference participants (without local user).
949
+     * @returns {JitsiParticipant[]}
950
+     *
951
+     * NOTE: Used by jitsi-meet-torture!
952
+     */
953
+    listMembers() {
954
+        return room.getParticipants();
955
+    },
956
+
947
     get membersCount() {
957
     get membersCount() {
948
         return room.getParticipants().length + 1;
958
         return room.getParticipants().length + 1;
949
     },
959
     },

Loading…
Cancel
Save