diff options
author | KN4CK3R <admin@oldschoolhack.me> | 2021-08-21 04:16:45 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-20 22:16:45 -0400 |
commit | 0bd58d61e547f482dd3c38a30fccb4c58caf2a67 (patch) | |
tree | fbc87f7c8d550db4d54fe930f98d92db0e4b901d /templates/user/auth | |
parent | e9747de95242807a6319e146216575676de66f47 (diff) | |
download | gitea-0bd58d61e547f482dd3c38a30fccb4c58caf2a67.tar.gz gitea-0bd58d61e547f482dd3c38a30fccb4c58caf2a67.zip |
Added introspection endpoint. (#16752)
Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
Diffstat (limited to 'templates/user/auth')
-rw-r--r-- | templates/user/auth/oidc_wellknown.tmpl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/templates/user/auth/oidc_wellknown.tmpl b/templates/user/auth/oidc_wellknown.tmpl index 93a048b513..d4cbf7dfec 100644 --- a/templates/user/auth/oidc_wellknown.tmpl +++ b/templates/user/auth/oidc_wellknown.tmpl @@ -4,6 +4,7 @@ "token_endpoint": "{{AppUrl | JSEscape | Safe}}login/oauth/access_token", "jwks_uri": "{{AppUrl | JSEscape | Safe}}login/oauth/keys", "userinfo_endpoint": "{{AppUrl | JSEscape | Safe}}login/oauth/userinfo", + "introspection_endpoint": "{{AppUrl | JSEscape | Safe}}login/oauth/introspect", "response_types_supported": [ "code", "id_token" |