2021-03-17 09:30:42 +00:00
|
|
|
/**
|
|
|
|
* 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',
|
2021-05-05 09:21:22 +00:00
|
|
|
'screen-sharing',
|
|
|
|
'sip-outbound-call',
|
2021-03-17 09:30:42 +00:00
|
|
|
'transcription'
|
|
|
|
];
|