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

constants.js 3.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  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 close captions should be enabled.
  20. * Default: enabled (true).
  21. */
  22. export const CLOSE_CAPTIONS_ENABLED = 'close-captions.enabled';
  23. /**
  24. * Flag indicating if conference timer should be enabled.
  25. * Default: enabled (true).
  26. */
  27. export const CONFERENCE_TIMER_ENABLED = 'conference-timer.enabled';
  28. /**
  29. * Flag indicating if chat should be enabled.
  30. * Default: enabled (true).
  31. */
  32. export const CHAT_ENABLED = 'chat.enabled';
  33. /**
  34. * Flag indicating if invite functionality should be enabled.
  35. * Default: enabled (true).
  36. */
  37. export const INVITE_ENABLED = 'invite.enabled';
  38. /**
  39. * Flag indicating if recording should be enabled in iOS.
  40. * Default: disabled (false).
  41. */
  42. export const IOS_RECORDING_ENABLED = 'ios.recording.enabled';
  43. /**
  44. * Flag indicating if kickout is enabled.
  45. * Default: enabled (true).
  46. */
  47. export const KICK_OUT_ENABLED = 'kick-out.enabled';
  48. /**
  49. * Flag indicating if live-streaming should be enabled.
  50. * Default: auto-detected.
  51. */
  52. export const LIVE_STREAMING_ENABLED = 'live-streaming.enabled';
  53. /**
  54. * Flag indicating if displaying the meeting name should be enabled.
  55. * Default: enabled (true).
  56. */
  57. export const MEETING_NAME_ENABLED = 'meeting-name.enabled';
  58. /**
  59. * Flag indicating if the meeting password button should be enabled.
  60. * Note that this flag just decides on the buttton, if a meeting has a password
  61. * set, the password ddialog will still show up.
  62. * Default: enabled (true).
  63. */
  64. export const MEETING_PASSWORD_ENABLED = 'meeting-password.enabled';
  65. /**
  66. * Flag indicating if Picture-in-Picture should be enabled.
  67. * Default: auto-detected.
  68. */
  69. export const PIP_ENABLED = 'pip.enabled';
  70. /**
  71. * Flag indicating if raise hand feature should be enabled.
  72. * Default: enabled.
  73. */
  74. export const RAISE_HAND_ENABLED = 'raise-hand.enabled';
  75. /**
  76. * Flag indicating if recording should be enabled.
  77. * Default: auto-detected.
  78. */
  79. export const RECORDING_ENABLED = 'recording.enabled';
  80. /**
  81. * Flag indicating the local and (maximum) remote video resolution. Overrides
  82. * the server configuration.
  83. * Default: (unset).
  84. */
  85. export const RESOLUTION = 'resolution';
  86. /**
  87. * Flag indicating if server URL change is enabled.
  88. * Default: enabled (true)
  89. */
  90. export const SERVER_URL_CHANGE_ENABLED = 'server-url-change.enabled';
  91. /**
  92. * Flag indicating if tile view feature should be enabled.
  93. * Default: enabled.
  94. */
  95. export const TILE_VIEW_ENABLED = 'tile-view.enabled';
  96. /**
  97. * Flag indicating if the toolbox should be always be visible
  98. * Default: disabled (false).
  99. */
  100. export const TOOLBOX_ALWAYS_VISIBLE = 'toolbox.alwaysVisible';
  101. /**
  102. * Flag indicating if the video share button should be enabled
  103. * Default: enabled (true).
  104. */
  105. export const VIDEO_SHARE_BUTTON_ENABLED = 'video-share.enabled';
  106. /**
  107. * Flag indicating if the welcome page should be enabled.
  108. * Default: disabled (false).
  109. */
  110. export const WELCOME_PAGE_ENABLED = 'welcomepage.enabled';