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

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