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.

configWhitelist.js 5.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  1. import extraConfigWhitelist from './extraConfigWhitelist';
  2. /**
  3. * The config keys to whitelist, the keys that can be overridden.
  4. * Currently we can only whitelist the first part of the properties, like
  5. * 'p2p.enabled' we whitelist all p2p options.
  6. * The whitelist is used only for config.js.
  7. *
  8. * @type Array
  9. */
  10. export default [
  11. '_desktopSharingSourceDevice',
  12. '_peerConnStatusOutOfLastNTimeout',
  13. '_peerConnStatusRtcMuteTimeout',
  14. 'abTesting',
  15. 'analytics.disabled',
  16. 'audioLevelsInterval',
  17. 'audioQuality',
  18. 'apiLogLevels',
  19. 'avgRtpStatsN',
  20. 'backgroundAlpha',
  21. /**
  22. * The display name of the CallKit call representing the conference/meeting
  23. * associated with this config.js including while the call is ongoing in the
  24. * UI presented by CallKit and in the system-wide call history. The property
  25. * is meant for use cases in which the room name is not desirable as a
  26. * display name for CallKit purposes and the desired display name is not
  27. * provided in the form of a JWT callee. As the value is associated with a
  28. * conference/meeting, the value makes sense not as a deployment-wide
  29. * configuration, only as a runtime configuration override/overwrite
  30. * provided by, for example, Jitsi Meet SDK for iOS.
  31. *
  32. * @type string
  33. */
  34. 'callDisplayName',
  35. 'callFlowsEnabled',
  36. /**
  37. * The handle
  38. * ({@link https://developer.apple.com/documentation/callkit/cxhandle}) of
  39. * the CallKit call representing the conference/meeting associated with this
  40. * config.js. The property is meant for use cases in which the room URL is
  41. * not desirable as the handle for CallKit purposes. As the value is
  42. * associated with a conference/meeting, the value makes sense not as a
  43. * deployment-wide configuration, only as a runtime configuration
  44. * override/overwrite provided by, for example, Jitsi Meet SDK for iOS.
  45. *
  46. * @type string
  47. */
  48. 'callHandle',
  49. 'callStatsConfIDNamespace',
  50. 'callStatsID',
  51. 'callStatsSecret',
  52. /**
  53. * The UUID of the CallKit call representing the conference/meeting
  54. * associated with this config.js. The property is meant for use cases in
  55. * which Jitsi Meet is to work with a CallKit call created outside of Jitsi
  56. * Meet and to be adopted by Jitsi Meet such as, for example, an incoming
  57. * and/or outgoing CallKit call created by Jitsi Meet SDK for iOS
  58. * clients/consumers prior to giving control to Jitsi Meet. As the value is
  59. * associated with a conference/meeting, the value makes sense not as a
  60. * deployment-wide configuration, only as a runtime configuration
  61. * override/overwrite provided by, for example, Jitsi Meet SDK for iOS.
  62. *
  63. * @type string
  64. */
  65. 'callUUID',
  66. 'channelLastN',
  67. 'constraints',
  68. 'brandingRoomAlias',
  69. 'debug',
  70. 'debugAudioLevels',
  71. 'defaultLanguage',
  72. 'desktopSharingFrameRate',
  73. 'desktopSharingSources',
  74. 'disable1On1Mode',
  75. 'disableAEC',
  76. 'disableAGC',
  77. 'disableAP',
  78. 'disableAudioLevels',
  79. 'disableDeepLinking',
  80. 'disableFilmstripAutohiding',
  81. 'disableInitialGUM',
  82. 'disableH264',
  83. 'disableHPF',
  84. 'disableInviteFunctions',
  85. 'disableJoinLeaveSounds',
  86. 'disableLocalVideoFlip',
  87. 'disableNS',
  88. 'disableProfile',
  89. 'disableRemoteControl',
  90. 'disableRemoteMute',
  91. 'disableResponsiveTiles',
  92. 'disableRtx',
  93. 'disableShortcuts',
  94. 'disableShowMoreStats',
  95. 'disableSimulcast',
  96. 'disableThirdPartyRequests',
  97. 'disableTileView',
  98. 'displayJids',
  99. 'doNotStoreRoom',
  100. 'doNotFlipLocalVideo',
  101. 'dropbox',
  102. 'e2eping',
  103. 'enableDisplayNameInStats',
  104. 'enableEmailInStats',
  105. 'enableIceRestart',
  106. 'enableInsecureRoomNameWarning',
  107. 'enableLayerSuspension',
  108. 'enableLipSync',
  109. 'enableOpusRed',
  110. 'enableRemb',
  111. 'enableSaveLogs',
  112. 'enableScreenshotCapture',
  113. 'enableTalkWhileMuted',
  114. 'enableNoAudioDetection',
  115. 'enableNoisyMicDetection',
  116. 'enableTcc',
  117. 'enableAutomaticUrlCopy',
  118. 'etherpad_base',
  119. 'failICE',
  120. 'feedbackPercentage',
  121. 'fileRecordingsEnabled',
  122. 'firefox_fake_device',
  123. 'forceJVB121Ratio',
  124. 'forceTurnRelay',
  125. 'gatherStats',
  126. 'googleApiApplicationClientID',
  127. 'hideConferenceSubject',
  128. 'hideParticipantsStats',
  129. 'hideConferenceTimer',
  130. 'hiddenDomain',
  131. 'hideLobbyButton',
  132. 'hosts',
  133. 'iAmRecorder',
  134. 'iAmSipGateway',
  135. 'iceTransportPolicy',
  136. 'ignoreStartMuted',
  137. 'inviteAppName',
  138. 'liveStreamingEnabled',
  139. 'localRecording',
  140. 'maxFullResolutionParticipants',
  141. 'mouseMoveCallbackInterval',
  142. 'notifications',
  143. 'openSharedDocumentOnJoin',
  144. 'opusMaxAverageBitrate',
  145. 'p2p',
  146. 'pcStatsInterval',
  147. 'preferH264',
  148. 'preferredCodec',
  149. 'prejoinPageEnabled',
  150. 'requireDisplayName',
  151. 'remoteVideoMenu',
  152. 'roomPasswordNumberOfDigits',
  153. 'replaceParticipant',
  154. 'resolution',
  155. 'startAudioMuted',
  156. 'startAudioOnly',
  157. 'startLastN',
  158. 'startScreenSharing',
  159. 'startSilent',
  160. 'startVideoMuted',
  161. 'startWithAudioMuted',
  162. 'startWithVideoMuted',
  163. 'stereo',
  164. 'subject',
  165. 'testing',
  166. 'toolbarButtons',
  167. 'useHostPageLocalStorage',
  168. 'useTurnUdp',
  169. 'videoQuality.persist',
  170. 'webrtcIceTcpDisable',
  171. 'webrtcIceUdpDisable'
  172. ].concat(extraConfigWhitelist);