summary refs log tree commit diff
path: root/synapse/config
diff options
context:
space:
mode:
authorJason Robinson <jasonr@matrix.org>2020-05-27 15:52:18 +0300
committerGitHub <noreply@github.com>2020-05-27 13:52:18 +0100
commit4be968d05dde8c79b1a0f21ff2b9d7860419d9a6 (patch)
treecf819dc8aeed94f464e9599d2a588c8b2425ad96 /synapse/config
parentFix up comments (diff)
downloadsynapse-4be968d05dde8c79b1a0f21ff2b9d7860419d9a6.tar.xz
Fix sample config docs error (#7581)
'client_auth_method' commented out value was erronously 'client_auth_basic',
when code and docstring says it should be 'client_secret_basic'.

Signed-off-by: Jason Robinson <jasonr@matrix.org>
Diffstat (limited to 'synapse/config')
-rw-r--r--synapse/config/oidc_config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/config/oidc_config.py b/synapse/config/oidc_config.py
index 5af110745e..586038078f 100644
--- a/synapse/config/oidc_config.py
+++ b/synapse/config/oidc_config.py
@@ -112,7 +112,7 @@ class OIDCConfig(Config):
             # auth method to use when exchanging the token.
             # Valid values are "client_secret_basic" (default), "client_secret_post" and "none".
             #
-            #client_auth_method: "client_auth_basic"
+            #client_auth_method: "client_secret_basic"
 
             # list of scopes to ask. This should include the "openid" scope. Defaults to ["openid"].
             #