You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

constants.js 333B

1234567891011121314151617
  1. /**
  2. * The list of supported meeting features to enable/disable through jwt.
  3. */
  4. export const MEET_FEATURES = [
  5. 'branding',
  6. 'calendar',
  7. 'callstats',
  8. 'livestreaming',
  9. 'lobby',
  10. 'moderation',
  11. 'outbound-call',
  12. 'recording',
  13. 'room',
  14. 'screen-sharing',
  15. 'sip-outbound-call',
  16. 'transcription'
  17. ];