Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2021-09-21 16:22:13 +0300
committerJoas Schilling <coding@schilljs.com>2021-10-07 19:18:29 +0300
commita0e1168db04100c153133a5fcb0d1440a2e22644 (patch)
treeb9639085848ab2dd78190eabbc4f93b6f1ac7d99 /src/mixins
parentd2967ce0cff9f0e0f5b5114de02e337ea0dcbe97 (diff)
Allow users individually into the lobby
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'src/mixins')
-rw-r--r--src/mixins/isInLobby.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mixins/isInLobby.js b/src/mixins/isInLobby.js
index ff5461c01..d7cb4838b 100644
--- a/src/mixins/isInLobby.js
+++ b/src/mixins/isInLobby.js
@@ -42,6 +42,7 @@ export default {
return this.conversation
&& this.conversation.lobbyState === WEBINAR.LOBBY.NON_MODERATORS
&& !this.isModerator
+ && (this.conversation.publishingPermissions & PARTICIPANT.PERMISSIONS.LOBBY_IGNORE) === 0
},
},