mirror of
https://github.com/vector-im/element-call.git
synced 2026-06-06 11:45:53 +00:00
* Move MatrixRTCMode enum from settings.ts to ConfigOptions.ts * Add matrix_rtc_mode config option * add matrix_rtc_mode to config.sample.json * Update src/settings/DeveloperSettingsTab.tsx Co-authored-by: Johannes Marbach <n0-0ne+github@mailbox.org> * Update src/settings/DeveloperSettingsTab.test.tsx Co-authored-by: Johannes Marbach <n0-0ne+github@mailbox.org> * reviewer comments --------- Co-authored-by: Johannes Marbach <n0-0ne+github@mailbox.org>
24 lines
667 B
JSON
24 lines
667 B
JSON
{
|
|
"default_server_config": {
|
|
"m.homeserver": {
|
|
"base_url": "https://mydomain.com",
|
|
"server_name": "mydomain.com"
|
|
}
|
|
},
|
|
"livekit": {
|
|
"livekit_service_url": "https://livekit-jwt.mydomain.com"
|
|
},
|
|
"features": {
|
|
"feature_use_device_session_member_events": true
|
|
},
|
|
"ssla": "https://static.element.io/legal/element-software-and-services-license-agreement-uk-1.pdf",
|
|
"matrix_rtc_mode": "legacy",
|
|
"matrix_rtc_session": {
|
|
"wait_for_key_rotation_ms": 3000,
|
|
"membership_event_expiry_ms": 180000000,
|
|
"delayed_leave_event_delay_ms": 18000,
|
|
"delayed_leave_event_restart_ms": 4000,
|
|
"network_error_retry_ms": 100
|
|
}
|
|
}
|