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

constants.js 2.2KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. // @flow
  2. /**
  3. * Flag indicating if add-people functionality should be enabled.
  4. * Default: enabled (true).
  5. */
  6. export const ADD_PEOPLE_ENABLED = 'add-people.enabled';
  7. /**
  8. * Flag indicating if calendar integration should be enabled.
  9. * Default: enabled (true) on Android, auto-detected on iOS.
  10. */
  11. export const CALENDAR_ENABLED = 'calendar.enabled';
  12. /**
  13. * Flag indicating if call integration (CallKit on iOS, ConnectionService on Android)
  14. * should be enabled.
  15. * Default: enabled (true).
  16. */
  17. export const CALL_INTEGRATION_ENABLED = 'call-integration.enabled';
  18. /**
  19. * Flag indicating if chat should be enabled.
  20. * Default: enabled (true).
  21. */
  22. export const CLOSE_CAPTIONS_ENABLED = 'close-captions.enabled';
  23. /**
  24. * Flag indicating if chat should be enabled.
  25. * Default: enabled (true).
  26. */
  27. export const CHAT_ENABLED = 'chat.enabled';
  28. /**
  29. * Flag indicating if invite functionality should be enabled.
  30. * Default: enabled (true).
  31. */
  32. export const INVITE_ENABLED = 'invite.enabled';
  33. /**
  34. * Flag indicating if recording should be enabled in iOS.
  35. * Default: disabled (false).
  36. */
  37. export const IOS_RECORDING_ENABLED = 'ios.recording.enabled';
  38. /**
  39. * Flag indicating if live-streaming should be enabled.
  40. * Default: auto-detected.
  41. */
  42. export const LIVE_STREAMING_ENABLED = 'live-streaming.enabled';
  43. /**
  44. * Flag indicating if displaying the meeting name should be enabled.
  45. * Default: enabled (true).
  46. */
  47. export const MEETING_NAME_ENABLED = 'meeting-name.enabled';
  48. /**
  49. * Flag indicating if the meeting password button should be enabled.
  50. * Note that this flag just decides on the buttton, if a meeting has a password
  51. * set, the password ddialog will still show up.
  52. * Default: enabled (true).
  53. */
  54. export const MEETING_PASSWORD_ENABLED = 'meeting-password.enabled';
  55. /**
  56. * Flag indicating if Picture-in-Picture should be enabled.
  57. * Default: auto-detected.
  58. */
  59. export const PIP_ENABLED = 'pip.enabled';
  60. /**
  61. * Flag indicating if recording should be enabled.
  62. * Default: auto-detected.
  63. */
  64. export const RECORDING_ENABLED = 'recording.enabled';
  65. /**
  66. * Flag indicating if the welcome page should be enabled.
  67. * Default: disabled (false).
  68. */
  69. export const WELCOME_PAGE_ENABLED = 'welcomepage.enabled';