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-22 17:59:41 +0300
committerJoas Schilling <coding@schilljs.com>2021-10-07 19:18:30 +0300
commit1b13f80cc119eb386afe72866e6f4f8f9537c471 (patch)
treefbaa50ec2d584fccc828e9359323d0a99c7f398d /src/constants.js
parent390ae657a18523bb0b39f6531fa27de9bb075410 (diff)
Allow to remove all permissions without falling back to the next level
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'src/constants.js')
-rw-r--r--src/constants.js15
1 files changed, 8 insertions, 7 deletions
diff --git a/src/constants.js b/src/constants.js
index e6975dbfe..be0428881 100644
--- a/src/constants.js
+++ b/src/constants.js
@@ -88,13 +88,14 @@ export const PARTICIPANT = {
GUEST_MODERATOR: 6,
},
PERMISSIONS: {
- NONE: 0,
- PUBLISH_AUDIO: 1,
- PUBLISH_VIDEO: 2,
- PUBLISH_SCREEN: 4,
- CALL_START: 8,
- CALL_JOIN: 16,
- LOBBY_IGNORE: 32,
+ DEFAULT: 0,
+ CUSTOM: 1,
+ CALL_START: 2,
+ CALL_JOIN: 4,
+ LOBBY_IGNORE: 8,
+ PUBLISH_AUDIO: 16,
+ PUBLISH_VIDEO: 32,
+ PUBLISH_SCREEN: 64,
},
}
export const WEBINAR = {