mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2024-11-17 20:54:57 +00:00
Use raw/endraw around templated strings in matrix_authentication_service_config_upstream_oauth2_providers sample config
Fixes https://github.com/spantaleev/matrix-docker-ansible-deploy/issues/3645
This commit is contained in:
parent
a3d47c5581
commit
8f2e9e03a2
@ -229,21 +229,21 @@ matrix_authentication_service_config_upstream_oauth2_providers:
|
|||||||
# By default it uses the `sub` claim as per the OIDC spec,
|
# By default it uses the `sub` claim as per the OIDC spec,
|
||||||
# which should fit most use cases.
|
# which should fit most use cases.
|
||||||
subject:
|
subject:
|
||||||
#template: "{{ user.sub }}"
|
#template: "{% raw %}{{ user.sub }}{% endraw %}"
|
||||||
# The localpart is the local part of the user's Matrix ID.
|
# The localpart is the local part of the user's Matrix ID.
|
||||||
# For example, on the `example.com` server, if the localpart is `alice`,
|
# For example, on the `example.com` server, if the localpart is `alice`,
|
||||||
# the user's Matrix ID will be `@alice:example.com`.
|
# the user's Matrix ID will be `@alice:example.com`.
|
||||||
localpart:
|
localpart:
|
||||||
#action: force
|
#action: force
|
||||||
#template: "{{ user.preferred_username }}"
|
#template: "{% raw %}{{ user.preferred_username }}{% endraw %}"
|
||||||
# The display name is the user's display name.
|
# The display name is the user's display name.
|
||||||
displayname:
|
displayname:
|
||||||
#action: suggest
|
#action: suggest
|
||||||
#template: "{{ user.name }}"
|
#template: "{% raw %}{{ user.name }}{% endraw %}"
|
||||||
# An email address to import.
|
# An email address to import.
|
||||||
email:
|
email:
|
||||||
#action: suggest
|
#action: suggest
|
||||||
#template: "{{ user.email }}"
|
#template: "{% raw %}{{ user.email }}{% endraw %}"
|
||||||
# Whether the email address must be marked as verified.
|
# Whether the email address must be marked as verified.
|
||||||
# Possible values are:
|
# Possible values are:
|
||||||
# - `import`: mark the email address as verified if the upstream provider
|
# - `import`: mark the email address as verified if the upstream provider
|
||||||
|
Loading…
Reference in New Issue
Block a user