Browse Source

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

j8
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,6 +944,16 @@ export default {
944 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 957
     get membersCount() {
948 958
         return room.getParticipants().length + 1;
949 959
     },

Loading…
Cancel
Save