mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2024-11-18 18:12:18 +00:00
fix: escape jinja '.'
This commit is contained in:
parent
0f7b89523f
commit
7a83c2026c
@ -87,11 +87,11 @@ metrics:
|
|||||||
# Bridge config
|
# Bridge config
|
||||||
bridge:
|
bridge:
|
||||||
# Localpart template of MXIDs for Signal users.
|
# Localpart template of MXIDs for Signal users.
|
||||||
# {{.}} is replaced with the internal ID of the Signal user.
|
# {{ '{{.}}' }} is replaced with the internal ID of the Signal user.
|
||||||
username_template: signal_{{.}}
|
username_template: "{{ 'signalgo_{{.}}' }}"
|
||||||
# Displayname template for Signal users. This is also used as the room name in DMs if private_chat_portal_meta is enabled.
|
# Displayname template for Signal users. This is also used as the room name in DMs if private_chat_portal_meta is enabled.
|
||||||
# Available variables: TODO
|
# Available variables: TODO
|
||||||
displayname_template: '{{.ProfileName}} (Signalgo)'
|
displayname_template: "{{ '{{.ProfileName}} (Signalgo)' }}"
|
||||||
# Whether to explicitly set the avatar and room name for private chat portal rooms.
|
# Whether to explicitly set the avatar and room name for private chat portal rooms.
|
||||||
# If set to `default`, this will be enabled in encrypted rooms and disabled in unencrypted rooms.
|
# If set to `default`, this will be enabled in encrypted rooms and disabled in unencrypted rooms.
|
||||||
# If set to `always`, all DM rooms will have explicit names and avatars set.
|
# If set to `always`, all DM rooms will have explicit names and avatars set.
|
||||||
|
Loading…
Reference in New Issue
Block a user