2019-05-07 21:23:35 +02:00
|
|
|
#jinja2: lstrip_blocks: "True"
|
2018-09-17 09:51:46 +02:00
|
|
|
{
|
|
|
|
"m.homeserver": {
|
|
|
|
"base_url": "{{ matrix_homeserver_url }}"
|
2019-11-20 23:05:16 +01:00
|
|
|
}
|
|
|
|
{% if matrix_identity_server_url %},
|
2018-09-17 09:51:46 +02:00
|
|
|
"m.identity_server": {
|
|
|
|
"base_url": "{{ matrix_identity_server_url }}"
|
|
|
|
}
|
2019-11-20 23:05:16 +01:00
|
|
|
{% endif %}
|
2019-12-10 05:23:56 +01:00
|
|
|
{% if matrix_integration_manager_rest_url and matrix_integration_manager_ui_url %},
|
2019-12-06 00:32:51 +01:00
|
|
|
"m.integrations": {
|
|
|
|
"managers": [
|
|
|
|
{
|
2019-12-10 05:23:56 +01:00
|
|
|
"api_url": "{{ matrix_integration_manager_rest_url }}",
|
|
|
|
"ui_url": "{{ matrix_integration_manager_ui_url }}"
|
2019-12-06 00:32:51 +01:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
{% endif %}
|
2020-09-26 18:24:09 +02:00
|
|
|
{% if matrix_client_element_jitsi_preferredDomain %},
|
2020-09-26 18:27:40 +02:00
|
|
|
"io.element.jitsi": {
|
|
|
|
"preferredDomain": {{ matrix_client_element_jitsi_preferredDomain|to_json }}
|
|
|
|
},
|
2020-04-09 08:58:35 +02:00
|
|
|
"im.vector.riot.jitsi": {
|
2020-09-26 18:24:09 +02:00
|
|
|
"preferredDomain": {{ matrix_client_element_jitsi_preferredDomain|to_json }}
|
2020-04-09 08:58:35 +02:00
|
|
|
}
|
|
|
|
{% endif %}
|
2020-10-16 00:32:00 +02:00
|
|
|
,
|
2020-10-16 08:47:37 +02:00
|
|
|
"io.element.e2ee": {
|
|
|
|
"default": {{ matrix_client_element_e2ee_default|to_json }},
|
2020-10-16 09:24:50 +02:00
|
|
|
"secure_backup_required": {{ matrix_client_element_e2ee_secure_backup_required|to_json }},
|
|
|
|
"secure_backup_setup_methods": {{ matrix_client_element_e2ee_secure_backup_setup_methods|to_json }}
|
2020-09-26 18:27:40 +02:00
|
|
|
},
|
2020-06-24 10:38:51 +02:00
|
|
|
"im.vector.riot.e2ee": {
|
2020-10-16 08:47:37 +02:00
|
|
|
"default": {{ matrix_client_element_e2ee_default|to_json }}
|
2020-06-24 10:38:51 +02:00
|
|
|
}
|
2018-09-17 09:51:46 +02:00
|
|
|
}
|