Parcourir la source
Merge pull request #343 from lxp/fix-registration-regex
Fix regex in matrix_appservice_webhooks_registration_yaml
pull/350/head
Slavi Pantaleev
il y a 6 ans
committed by
GitHub
Parent
révision
6576dc820a
Aucune clé connue n'a été trouvée dans la base pour cette signature
ID de la clé GPG: 4AEE18F83AFDEB23
1 fichiers modifiés avec
1 ajouts et
1 suppressions
-
roles/matrix-bridge-appservice-webhooks/defaults/main.yml
|
|
|
@@ -94,7 +94,7 @@ matrix_appservice_webhooks_registration_yaml: | |
|
|
|
namespaces: |
|
|
|
users: |
|
|
|
- exclusive: true |
|
|
|
regex: '@{{ matrix_appservice_webhooks_user_prefix }}*:{{ matrix_domain }}' |
|
|
|
regex: '^@{{ matrix_appservice_webhooks_user_prefix | regex_escape }}.*:{{ matrix_domain | regex_escape }}$' |
|
|
|
aliases: [] |
|
|
|
rooms: [] |
|
|
|
url: "{{ matrix_appservice_webhooks_appservice_url }}:{{ matrix_appservice_webhooks_matrix_port }}" |
|
|
|
|