mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2024-12-12 00:34:19 -05:00
Fix escaping of braces in OIDC sample config. (#9317)
This fixes the Jinja2 templates for the mapping provider.
This commit is contained in:
parent
2814028ce5
commit
2ab6e67ab7
1
changelog.d/9317.doc
Normal file
1
changelog.d/9317.doc
Normal file
@ -0,0 +1 @@
|
|||||||
|
Fix the braces in the `oidc_providers` section of the sample config.
|
@ -1872,9 +1872,9 @@ oidc_providers:
|
|||||||
# user_mapping_provider:
|
# user_mapping_provider:
|
||||||
# config:
|
# config:
|
||||||
# subject_claim: "id"
|
# subject_claim: "id"
|
||||||
# localpart_template: "{ user.login }"
|
# localpart_template: "{{ user.login }}"
|
||||||
# display_name_template: "{ user.name }"
|
# display_name_template: "{{ user.name }}"
|
||||||
# email_template: "{ user.email }"
|
# email_template: "{{ user.email }}"
|
||||||
|
|
||||||
# For use with Keycloak
|
# For use with Keycloak
|
||||||
#
|
#
|
||||||
@ -1901,8 +1901,8 @@ oidc_providers:
|
|||||||
# user_mapping_provider:
|
# user_mapping_provider:
|
||||||
# config:
|
# config:
|
||||||
# subject_claim: "id"
|
# subject_claim: "id"
|
||||||
# localpart_template: "{ user.login }"
|
# localpart_template: "{{ user.login }}"
|
||||||
# display_name_template: "{ user.name }"
|
# display_name_template: "{{ user.name }}"
|
||||||
|
|
||||||
|
|
||||||
# Enable Central Authentication Service (CAS) for registration and login.
|
# Enable Central Authentication Service (CAS) for registration and login.
|
||||||
|
@ -198,9 +198,9 @@ class OIDCConfig(Config):
|
|||||||
# user_mapping_provider:
|
# user_mapping_provider:
|
||||||
# config:
|
# config:
|
||||||
# subject_claim: "id"
|
# subject_claim: "id"
|
||||||
# localpart_template: "{{ user.login }}"
|
# localpart_template: "{{{{ user.login }}}}"
|
||||||
# display_name_template: "{{ user.name }}"
|
# display_name_template: "{{{{ user.name }}}}"
|
||||||
# email_template: "{{ user.email }}"
|
# email_template: "{{{{ user.email }}}}"
|
||||||
|
|
||||||
# For use with Keycloak
|
# For use with Keycloak
|
||||||
#
|
#
|
||||||
@ -227,8 +227,8 @@ class OIDCConfig(Config):
|
|||||||
# user_mapping_provider:
|
# user_mapping_provider:
|
||||||
# config:
|
# config:
|
||||||
# subject_claim: "id"
|
# subject_claim: "id"
|
||||||
# localpart_template: "{{ user.login }}"
|
# localpart_template: "{{{{ user.login }}}}"
|
||||||
# display_name_template: "{{ user.name }}"
|
# display_name_template: "{{{{ user.name }}}}"
|
||||||
""".format(
|
""".format(
|
||||||
mapping_provider=DEFAULT_USER_MAPPING_PROVIDER
|
mapping_provider=DEFAULT_USER_MAPPING_PROVIDER
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user