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

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