|
@@ -28,7 +28,37 @@ const WHITELISTED_KEYS = [
|
28
|
28
|
'callStatsConfIDNamespace',
|
29
|
29
|
'callStatsID',
|
30
|
30
|
'callStatsSecret',
|
|
31
|
+
|
|
32
|
+ /**
|
|
33
|
+ * The display name of the CallKit call representing the conference/meeting
|
|
34
|
+ * associated with this config.js including while the call is ongoing in the
|
|
35
|
+ * UI presented by CallKit and in the system-wide call history. The property
|
|
36
|
+ * is meant for use cases in which the room name is not desirable as a
|
|
37
|
+ * display name for CallKit purposes and the desired display name is not
|
|
38
|
+ * provided in the form of a JWT callee. As the value is associated with a
|
|
39
|
+ * conference/meeting, the value makes sense not as a deployment-wide
|
|
40
|
+ * configuration, only as a runtime configuration override/overwrite
|
|
41
|
+ * provided by, for example, Jitsi Meet SDK for iOS.
|
|
42
|
+ *
|
|
43
|
+ * @type string
|
|
44
|
+ */
|
|
45
|
+ 'callDisplayName',
|
|
46
|
+
|
|
47
|
+ /**
|
|
48
|
+ * The UUID of the CallKit call representing the conference/meeting
|
|
49
|
+ * associated with this config.js. The property is meant for use cases in
|
|
50
|
+ * which Jitsi Meet is to work with a CallKit call created outside of Jitsi
|
|
51
|
+ * Meet and to be adopted by Jitsi Meet such as, for example, an incoming
|
|
52
|
+ * and/or outgoing CallKit call created by Jitsi Meet SDK for iOS
|
|
53
|
+ * clients/consumers prior to giving control to Jitsi Meet. As the value is
|
|
54
|
+ * associated with a conference/meeting, the value makes sense not as a
|
|
55
|
+ * deployment-wide configuration, only as a runtime configuration
|
|
56
|
+ * override/overwrite provided by, for example, Jitsi Meet SDK for iOS.
|
|
57
|
+ *
|
|
58
|
+ * @type string
|
|
59
|
+ */
|
31
|
60
|
'callUUID',
|
|
61
|
+
|
32
|
62
|
'channelLastN',
|
33
|
63
|
'constraints',
|
34
|
64
|
'debug',
|