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

constants.js 3.8KB

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