website/integrations: fix synapse docs based on upstream docs

closes #2080

Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
Jens Langhammer 2022-01-10 20:19:56 +01:00
parent 0181361efa
commit 4817126811
1 changed files with 6 additions and 2 deletions

View File

@ -31,6 +31,10 @@ Note the Client ID and Client Secret values. Create an application, using the pr
Add the following block to your Matrix config
:::info
For more info, see https://matrix-org.github.io/synapse/latest/openid.html?highlight=authentik#authentik
:::
```yaml
oidc_providers:
- idp_id: authentik
@ -45,6 +49,6 @@ oidc_providers:
- "email"
user_mapping_provider:
config:
localpart_template: "{{ '{{ user.name }}' }}"
display_name_template: "{{ '{{ user.name|capitalize }}' }}"
localpart_template: "{{ user.preferred_username }}}"
display_name_template: "{{ user.name|capitalize }}"
```