您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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. ];