mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2024-11-07 03:07:33 +01:00
9ab68a3cb4
Riot used to be fine with it being blank but now it complains. This creates an ugly looking comma when there is an identity server configured but I guess that's fine.
12 lines
228 B
Django/Jinja
12 lines
228 B
Django/Jinja
#jinja2: lstrip_blocks: "True"
|
|
{
|
|
"m.homeserver": {
|
|
"base_url": "{{ matrix_homeserver_url }}"
|
|
}
|
|
{% if matrix_identity_server_url %},
|
|
"m.identity_server": {
|
|
"base_url": "{{ matrix_identity_server_url }}"
|
|
}
|
|
{% endif %}
|
|
}
|