summary refs log tree commit diff
path: root/docs
diff options
context:
space:
mode:
authorPatrick Cloke <clokep@users.noreply.github.com>2021-02-04 09:06:20 -0500
committerGitHub <noreply@github.com>2021-02-04 09:06:20 -0500
commit2ab6e67ab73ff4ed0264116853a3eaf66a66d3ba (patch)
treec711db0c63ec9e2289039df5a0d492d33e16177d /docs
parentAdd experimental support for PyPy. (#9123) (diff)
downloadsynapse-2ab6e67ab73ff4ed0264116853a3eaf66a66d3ba.tar.xz
Fix escaping of braces in OIDC sample config. (#9317)
This fixes the Jinja2 templates for the mapping provider.
Diffstat (limited to 'docs')
-rw-r--r--docs/sample_config.yaml10
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/sample_config.yaml b/docs/sample_config.yaml

index 9dbba63bac..fbbf71edd9 100644 --- a/docs/sample_config.yaml +++ b/docs/sample_config.yaml
@@ -1872,9 +1872,9 @@ oidc_providers: # user_mapping_provider: # config: # subject_claim: "id" - # localpart_template: "{ user.login }" - # display_name_template: "{ user.name }" - # email_template: "{ user.email }" + # localpart_template: "{{ user.login }}" + # display_name_template: "{{ user.name }}" + # email_template: "{{ user.email }}" # For use with Keycloak # @@ -1901,8 +1901,8 @@ oidc_providers: # user_mapping_provider: # config: # subject_claim: "id" - # localpart_template: "{ user.login }" - # display_name_template: "{ user.name }" + # localpart_template: "{{ user.login }}" + # display_name_template: "{{ user.name }}" # Enable Central Authentication Service (CAS) for registration and login.