Skip to content

Commit

Permalink
adding logout out to openid connect discovery endpoint (#294)
Browse files Browse the repository at this point in the history
  • Loading branch information
Bento007 authored Oct 25, 2019
1 parent 0d10388 commit daa6ef8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion fusillade/api/oauth.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,8 @@ def proxy_response(dest_url, **extra_query_params):
token_endpoint=f"https://{os.environ['API_DOMAIN_NAME']}/oauth/token",
jwks_uri=f"https://{os.environ['API_DOMAIN_NAME']}/.well-known/jwks.json",
revocation_endpoint=f"https://{os.environ['API_DOMAIN_NAME']}/oauth/revoke",
userinfo_endpoint=f"https://{os.environ['API_DOMAIN_NAME']}/oauth/userinfo"
userinfo_endpoint=f"https://{os.environ['API_DOMAIN_NAME']}/oauth/userinfo",
logout_endpoint=f"https://{os.environ['API_DOMAIN_NAME']}/logout"
)


Expand Down

0 comments on commit daa6ef8

Please sign in to comment.