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.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. /**
  2. * The config keys to whitelist, the keys that can be overridden.
  3. * Currently we can only whitelist the first part of the properties, like
  4. * 'p2p.useStunTurn' and 'p2p.enabled' we whitelist all p2p options.
  5. * The whitelist is used only for config.js.
  6. *
  7. * @type Array
  8. */
  9. export default [
  10. '_desktopSharingSourceDevice',
  11. '_peerConnStatusOutOfLastNTimeout',
  12. '_peerConnStatusRtcMuteTimeout',
  13. 'abTesting',
  14. 'analytics.disabled',
  15. 'autoRecord',
  16. 'autoRecordToken',
  17. 'avgRtpStatsN',
  18. 'callFlowsEnabled',
  19. 'callStatsConfIDNamespace',
  20. 'callStatsID',
  21. 'callStatsSecret',
  22. /**
  23. * The display name of the CallKit call representing the conference/meeting
  24. * associated with this config.js including while the call is ongoing in the
  25. * UI presented by CallKit and in the system-wide call history. The property
  26. * is meant for use cases in which the room name is not desirable as a
  27. * display name for CallKit purposes and the desired display name is not
  28. * provided in the form of a JWT callee. As the value is associated with a
  29. * conference/meeting, the value makes sense not as a deployment-wide
  30. * configuration, only as a runtime configuration override/overwrite
  31. * provided by, for example, Jitsi Meet SDK for iOS.
  32. *
  33. * @type string
  34. */
  35. 'callDisplayName',
  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. /**
  50. * The UUID of the CallKit call representing the conference/meeting
  51. * associated with this config.js. The property is meant for use cases in
  52. * which Jitsi Meet is to work with a CallKit call created outside of Jitsi
  53. * Meet and to be adopted by Jitsi Meet such as, for example, an incoming
  54. * and/or outgoing CallKit call created by Jitsi Meet SDK for iOS
  55. * clients/consumers prior to giving control to Jitsi Meet. As the value is
  56. * associated with a conference/meeting, the value makes sense not as a
  57. * deployment-wide configuration, only as a runtime configuration
  58. * override/overwrite provided by, for example, Jitsi Meet SDK for iOS.
  59. *
  60. * @type string
  61. */
  62. 'callUUID',
  63. 'channelLastN',
  64. 'constraints',
  65. 'debug',
  66. 'debugAudioLevels',
  67. 'defaultLanguage',
  68. 'desktopSharingChromeDisabled',
  69. 'desktopSharingChromeExtId',
  70. 'desktopSharingChromeMinExtVersion',
  71. 'desktopSharingChromeSources',
  72. 'desktopSharingFrameRate',
  73. 'desktopSharingFirefoxDisabled',
  74. 'desktopSharingSources',
  75. 'disable1On1Mode',
  76. 'disableAEC',
  77. 'disableAGC',
  78. 'disableAP',
  79. 'disableAudioLevels',
  80. 'disableDeepLinking',
  81. 'disableH264',
  82. 'disableHPF',
  83. 'disableNS',
  84. 'disableRemoteControl',
  85. 'disableRtx',
  86. 'disableSuspendVideo',
  87. 'displayJids',
  88. 'e2eping',
  89. 'enableDisplayNameInStats',
  90. 'enableLayerSuspension',
  91. 'enableLipSync',
  92. 'disableLocalVideoFlip',
  93. 'enableRemb',
  94. 'enableStatsID',
  95. 'enableTalkWhileMuted',
  96. 'enableTcc',
  97. 'etherpad_base',
  98. 'failICE',
  99. 'fileRecordingsEnabled',
  100. 'firefox_fake_device',
  101. 'forceJVB121Ratio',
  102. 'gatherStats',
  103. 'googleApiApplicationClientID',
  104. 'hiddenDomain',
  105. 'hosts',
  106. 'iAmRecorder',
  107. 'iAmSipGateway',
  108. 'iceTransportPolicy',
  109. 'ignoreStartMuted',
  110. 'liveStreamingEnabled',
  111. 'localRecording',
  112. 'minParticipants',
  113. 'nick',
  114. 'openBridgeChannel',
  115. 'p2p',
  116. 'preferH264',
  117. 'requireDisplayName',
  118. 'resolution',
  119. 'startAudioMuted',
  120. 'startAudioOnly',
  121. 'startBitrate',
  122. 'startSilent',
  123. 'startScreenSharing',
  124. 'startVideoMuted',
  125. 'startWithVideoMuted',
  126. 'subject',
  127. 'testing',
  128. 'useIPv6',
  129. 'useNicks',
  130. 'useStunTurn',
  131. 'webrtcIceTcpDisable',
  132. 'webrtcIceUdpDisable'
  133. ];