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>2020-11-11 13:51:01 +0300
committerJoas Schilling <coding@schilljs.com>2020-11-26 11:46:45 +0300
commit51c1afcebe4e4f5c3294d806f0c48d45ded2fb95 (patch)
treee744c5cb5051f6630eebf919fc361b5443d282be /src/constants.js
parentd708bc558d2d745eb83206df6c02ba8d565221d4 (diff)
Add constants for SIP flags and pass on the event
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'src/constants.js')
-rw-r--r--src/constants.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/constants.js b/src/constants.js
index e5a5cfb09..a3d3c0a98 100644
--- a/src/constants.js
+++ b/src/constants.js
@@ -49,6 +49,12 @@ export const PARTICIPANT = {
WITH_VIDEO: 4,
WITH_PHONE: 8,
},
+ SIP_FLAG: {
+ MUTE_MICROPHONE: 1,
+ MUTE_SPEAKER: 2,
+ SPEAKING: 4,
+ RAISE_HAND: 8,
+ },
NOTIFY: {
DEFAULT: 0,
ALWAYS: 1,