mirror of https://github.com/jitsi/jitsi-meet
parent
c35d1d8d4b
commit
a2d0492007
@ -1,17 +1,29 @@ |
||||
/** |
||||
* The list of supported meeting features to enable/disable through jwt. |
||||
*/ |
||||
export const MEET_FEATURES = [ |
||||
'branding', |
||||
'calendar', |
||||
'callstats', |
||||
'livestreaming', |
||||
'lobby', |
||||
'moderation', |
||||
'outbound-call', |
||||
'recording', |
||||
'room', |
||||
'screen-sharing', |
||||
'sip-outbound-call', |
||||
'transcription' |
||||
]; |
||||
export const MEET_FEATURES = { |
||||
BRANDING: 'branding', |
||||
CALENDAR: 'calendar', |
||||
CALLSTATS: 'callstats', |
||||
FLIP: 'flip', |
||||
INBOUND_CALL: 'inbound-call', |
||||
LIVESTREAMING: 'livestreaming', |
||||
LOBBY: 'lobby', |
||||
MODERATION: 'moderation', |
||||
OUTBOUND_CALL: 'outbound-call', |
||||
RECORDING: 'recording', |
||||
ROOM: 'room', |
||||
SCREEN_SHARING: 'screen-sharing', |
||||
SIP_INBOUND_CALL: 'sip-inbound-call', |
||||
SIP_OUTBOUND_CALL: 'sip-outbound-call', |
||||
TRANSCRIPTION: 'transcription' |
||||
}; |
||||
|
||||
/** |
||||
* A mapping between jwt features and toolbar buttons keys. |
||||
*/ |
||||
export const FEATURES_TO_BUTTONS_MAPPING = { |
||||
'livestreaming': 'livestreaming', |
||||
'recording': 'recording', |
||||
'transcription': 'closedcaptions' |
||||
}; |
||||
|
||||
Loading…
Reference in new issue