77451c6a71
* Enable location sharing in Element * Update roles/custom/matrix-client-element/tasks/validate_config.yml Co-authored-by: Slavi Pantaleev <slavi@devture.com> * Update roles/custom/matrix-client-element/tasks/setup_install.yml Co-authored-by: Slavi Pantaleev <slavi@devture.com> * Rename location sharing vars to be consistent with other vars * Rename style.json to map_style.json * Add m.tile_server section to /.well-known/matrix/client Co-authored-by: Slavi Pantaleev <slavi@devture.com>
49 lines
2.3 KiB
Django/Jinja
49 lines
2.3 KiB
Django/Jinja
{
|
|
"default_server_config": {
|
|
"m.homeserver": {
|
|
"base_url": {{ matrix_client_element_default_hs_url | string|to_json }},
|
|
"server_name": {{ matrix_client_element_default_server_name | string|to_json }}
|
|
},
|
|
"m.identity_server": {
|
|
"base_url": {{ matrix_client_element_default_is_url | string|to_json }}
|
|
}
|
|
},
|
|
"settingDefaults": {
|
|
"custom_themes": {{ matrix_client_element_settingDefaults_custom_themes|to_json }}
|
|
},
|
|
"default_theme": {{ matrix_client_element_default_theme | string|to_json }},
|
|
"permalinkPrefix": {{ matrix_client_element_permalinkPrefix | string|to_json }},
|
|
"disable_custom_urls": {{ matrix_client_element_disable_custom_urls|to_json }},
|
|
"disable_guests": {{ matrix_client_element_disable_guests|to_json }},
|
|
"brand": {{ matrix_client_element_brand|to_json }},
|
|
"integrations_ui_url": {{ matrix_client_element_integrations_ui_url | string|to_json }},
|
|
"integrations_rest_url": {{ matrix_client_element_integrations_rest_url | string|to_json }},
|
|
"integrations_widgets_urls": {{ matrix_client_element_integrations_widgets_urls|to_json }},
|
|
"integrations_jitsi_widget_url": {{ matrix_client_element_integrations_jitsi_widget_url | string|to_json }},
|
|
"bug_report_endpoint_url": {{ matrix_client_element_bug_report_endpoint_url|to_json }},
|
|
"showLabsSettings": {{ matrix_client_element_showLabsSettings|to_json }},
|
|
"roomDirectory": {
|
|
"servers": {{ matrix_client_element_roomdir_servers|to_json }}
|
|
},
|
|
"welcomeUserId": {{ matrix_client_element_welcome_user_id|to_json }},
|
|
{% if matrix_client_element_enable_presence_by_hs_url is not none %}
|
|
"enable_presence_by_hs_url": {{ matrix_client_element_enable_presence_by_hs_url|to_json }},
|
|
{% endif %}
|
|
"embeddedPages": {
|
|
"homeUrl": {{ matrix_client_element_embedded_pages_home_url | string|to_json }}
|
|
},
|
|
{% if matrix_client_element_jitsi_preferredDomain %}
|
|
"jitsi": {
|
|
"preferredDomain": {{ matrix_client_element_jitsi_preferredDomain|to_json }}
|
|
},
|
|
{% endif %}
|
|
{% if matrix_client_element_location_sharing_enabled %}
|
|
"map_style_url": "https://{{ matrix_server_fqn_element }}/map_style.json",
|
|
{% endif %}
|
|
"branding": {
|
|
"authFooterLinks": {{ matrix_client_element_branding_authFooterLinks|to_json }},
|
|
"authHeaderLogoUrl": {{ matrix_client_element_branding_authHeaderLogoUrl|to_json }},
|
|
"welcomeBackgroundUrl": {{ matrix_client_element_branding_welcomeBackgroundUrl|to_json }}
|
|
}
|
|
}
|