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 5.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  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 the SDK should not require the audio focus.
  9. * Used by apps that do not use Jitsi audio.
  10. * Default: disabled (false)
  11. */
  12. export const AUDIO_FOCUS_DISABLED = 'audio-focus.disabled';
  13. /**
  14. * Flag indicating if the audio mute button should be displayed.
  15. * Default: enabled (true).
  16. */
  17. export const AUDIO_MUTE_BUTTON_ENABLED = 'audio-mute.enabled';
  18. /**
  19. * Flag indicating that the Audio only button in the overflow menu is enabled.
  20. * Default: enabled (true).
  21. */
  22. export const AUDIO_ONLY_BUTTON_ENABLED = 'audio-only.enabled';
  23. /**
  24. * Flag indicating if calendar integration should be enabled.
  25. * Default: enabled (true) on Android, auto-detected on iOS.
  26. */
  27. export const CALENDAR_ENABLED = 'calendar.enabled';
  28. /**
  29. * Flag indicating if call integration (CallKit on iOS, ConnectionService on Android)
  30. * should be enabled.
  31. * Default: enabled (true).
  32. */
  33. export const CALL_INTEGRATION_ENABLED = 'call-integration.enabled';
  34. /**
  35. * Flag indicating if close captions should be enabled.
  36. * Default: enabled (true).
  37. */
  38. export const CLOSE_CAPTIONS_ENABLED = 'close-captions.enabled';
  39. /**
  40. * Flag indicating if conference timer should be enabled.
  41. * Default: enabled (true).
  42. */
  43. export const CONFERENCE_TIMER_ENABLED = 'conference-timer.enabled';
  44. /**
  45. * Flag indicating if chat should be enabled.
  46. * Default: enabled (true).
  47. */
  48. export const CHAT_ENABLED = 'chat.enabled';
  49. /**
  50. * Flag indicating if the filmstrip should be enabled.
  51. * Default: enabled (true).
  52. */
  53. export const FILMSTRIP_ENABLED = 'filmstrip.enabled';
  54. /**
  55. * Flag indicating if fullscreen (immersive) mode should be enabled.
  56. * Default: enabled (true).
  57. */
  58. export const FULLSCREEN_ENABLED = 'fullscreen.enabled';
  59. /**
  60. * Flag indicating if the Help button should be enabled.
  61. * Default: enabled (true).
  62. */
  63. export const HELP_BUTTON_ENABLED = 'help.enabled';
  64. /**
  65. * Flag indicating if invite functionality should be enabled.
  66. * Default: enabled (true).
  67. */
  68. export const INVITE_ENABLED = 'invite.enabled';
  69. /**
  70. * Flag indicating if recording should be enabled in iOS.
  71. * Default: disabled (false).
  72. */
  73. export const IOS_RECORDING_ENABLED = 'ios.recording.enabled';
  74. /**
  75. * Flag indicating if screen sharing should be enabled in iOS.
  76. * Default: disabled (false).
  77. */
  78. export const IOS_SCREENSHARING_ENABLED = 'ios.screensharing.enabled';
  79. /**
  80. * Flag indicating if kickout is enabled.
  81. * Default: enabled (true).
  82. */
  83. export const KICK_OUT_ENABLED = 'kick-out.enabled';
  84. /**
  85. * Flag indicating if live-streaming should be enabled.
  86. * Default: auto-detected.
  87. */
  88. export const LIVE_STREAMING_ENABLED = 'live-streaming.enabled';
  89. /**
  90. * Flag indicating if displaying the meeting name should be enabled.
  91. * Default: enabled (true).
  92. */
  93. export const MEETING_NAME_ENABLED = 'meeting-name.enabled';
  94. /**
  95. * Flag indicating if the meeting password button should be enabled.
  96. * Note that this flag just decides on the button, if a meeting has a password
  97. * set, the password ddialog will still show up.
  98. * Default: enabled (true).
  99. */
  100. export const MEETING_PASSWORD_ENABLED = 'meeting-password.enabled';
  101. /**
  102. * Flag indicating if the notifications should be enabled.
  103. * Default: enabled (true).
  104. */
  105. export const NOTIFICATIONS_ENABLED = 'notifications.enabled';
  106. /**
  107. * Flag indicating if the audio overflow menu button should be displayed.
  108. * Default: enabled (true).
  109. */
  110. export const OVERFLOW_MENU_ENABLED = 'overflow-menu.enabled';
  111. /**
  112. * Flag indicating if Picture-in-Picture should be enabled.
  113. * Default: auto-detected.
  114. */
  115. export const PIP_ENABLED = 'pip.enabled';
  116. /**
  117. * Flag indicating if raise hand feature should be enabled.
  118. * Default: enabled.
  119. */
  120. export const RAISE_HAND_ENABLED = 'raise-hand.enabled';
  121. /**
  122. * Flag indicating if recording should be enabled.
  123. * Default: auto-detected.
  124. */
  125. export const RECORDING_ENABLED = 'recording.enabled';
  126. /**
  127. * Flag indicating the local and (maximum) remote video resolution. Overrides
  128. * the server configuration.
  129. * Default: (unset).
  130. */
  131. export const RESOLUTION = 'resolution';
  132. /**
  133. * Flag indicating if server URL change is enabled.
  134. * Default: enabled (true)
  135. */
  136. export const SERVER_URL_CHANGE_ENABLED = 'server-url-change.enabled';
  137. /**
  138. * Flag indicating if tile view feature should be enabled.
  139. * Default: enabled.
  140. */
  141. export const TILE_VIEW_ENABLED = 'tile-view.enabled';
  142. /**
  143. * Flag indicating if the toolbox should be always be visible
  144. * Default: disabled (false).
  145. */
  146. export const TOOLBOX_ALWAYS_VISIBLE = 'toolbox.alwaysVisible';
  147. /**
  148. * Flag indicating if the toolbox should be enabled
  149. * Default: enabled.
  150. */
  151. export const TOOLBOX_ENABLED = 'toolbox.enabled';
  152. /**
  153. * Flag indicating if the video mute button should be displayed.
  154. * Default: enabled (true).
  155. */
  156. export const VIDEO_MUTE_BUTTON_ENABLED = 'video-mute.enabled';
  157. /**
  158. * Flag indicating if the video share button should be enabled
  159. * Default: enabled (true).
  160. */
  161. export const VIDEO_SHARE_BUTTON_ENABLED = 'video-share.enabled';
  162. /**
  163. * Flag indicating if the welcome page should be enabled.
  164. * Default: disabled (false).
  165. */
  166. export const WELCOME_PAGE_ENABLED = 'welcomepage.enabled';