diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2021-02-04 09:06:20 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-04 09:06:20 -0500 |
commit | 2ab6e67ab73ff4ed0264116853a3eaf66a66d3ba (patch) | |
tree | c711db0c63ec9e2289039df5a0d492d33e16177d /docs | |
parent | Add experimental support for PyPy. (#9123) (diff) | |
download | synapse-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.yaml | 10 |
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. |