fix response_types example in oidc docs

Signed-off-by: si458 <simonsmith5521@gmail.com>

si458 committed Sep 30, 2025 at 17:09 UTC 4c9729290dfbac8fdb0b3ee189c12379133ecd76
1 file changed +2 -2
docs/docs/meshcentral/openidConnectStrategy.md
+2 -2
@@ -130,7 +130,7 @@ There are plenty of options at your disposal if you need them. In fact, you can
130 "redirect_uri": "https://mesh.your.domain/auth-oidc-callback",
131 "post_logout_redirect_uri": "https://mesh.your.domain/login",
132 "token_endpoint_auth_method": "client_secret_post",
133 - "response_types": "authorization_code"
133 + "response_types": "code"
134 },
135 "custom": {
136 "scope": [ "openid", "profile", "read.EmailAlias", "read.UserProfile" ],
@@ -256,7 +256,7 @@ There are just about as many option as possible here since openid-client also pr
256 "redirect_uri": "https://mesh.your.domain/auth-oidc-callback",
257 "post_logout_redirect_uri": "https://mesh.your.domain/login",
258 "token_endpoint_auth_method": "client_secret_post",
259 - "response_types": "authorization_code"
259 + "response_types": "code"
260 },
261 ```
262