website/integrations: Remove extra trailing bracket in matrix config (#2435)

In the sample code, there was an extra training "}" in the localpart_template causing all usernames to be appended with "=7D" before the server designation, such as:

@[Username]=7D:[ServerName]
This commit is contained in:
Josh Chapman 2022-03-04 13:31:25 -07:00 committed by GitHub
parent 4d3b25ea66
commit 680d4fc20d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -49,6 +49,6 @@ oidc_providers:
- "email"
user_mapping_provider:
config:
localpart_template: "{{ user.preferred_username }}}"
localpart_template: "{{ user.preferred_username }}"
display_name_template: "{{ user.name|capitalize }}"
```