Make bridges/bots use matrix_addons_homeserver_client_api_url (instead of matrix_homeserver_container_url)

This commit is contained in:
Slavi Pantaleev
2024-01-07 17:04:23 +02:00
parent 142de83b41
commit 7ec6fd3dfe
54 changed files with 89 additions and 34 deletions

View File

@ -23,3 +23,11 @@
that:
- matrix_homeserver_implementation == 'synapse'
fail_msg: "The User-Verification-Service requires Synapse as homeserver implementation"
- name: Fail if required matrix-user-verification-service settings not defined
ansible.builtin.fail:
msg: >-
You need to define a required configuration setting (`{{ item.name }}`).
when: "item.when | bool and vars[item.name] == ''"
with_items:
- {'name': 'matrix_user_verification_service_uvs_homeserver_url', when: true}