diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2022-10-06 09:47:54 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-06 09:47:54 +0100 |
commit | a09a7d40e39563d0950d5e9142f209195178577b (patch) | |
tree | 66b009649396f0c1c9961cf9a132d18665f4cfbd /docs/openid.md | |
parent | Batch up notifications after event persistence (#14033) (diff) | |
download | synapse-a09a7d40e39563d0950d5e9142f209195178577b.tar.xz |
openid.md: fix a typo in the facebook example
Diffstat (limited to '')
-rw-r--r-- | docs/openid.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/openid.md b/docs/openid.md index ce9b026228..45ba1947b3 100644 --- a/docs/openid.md +++ b/docs/openid.md @@ -423,7 +423,7 @@ Synapse config: user_mapping_provider: config: display_name_template: "{{ user.name }}" - email_template: "{{ '{{ user.email }}' }}" + email_template: "{{ user.email }}" ``` Relevant documents: |