Skip to content

Commit

Permalink
Merge pull request #17120 from guerler/fix_logout_23.1
Browse files Browse the repository at this point in the history
[23.1] Properly clear session on OIDC logout
  • Loading branch information
dannon authored Dec 1, 2023
2 parents 316f8c1 + 861a54b commit 1d32c21
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lib/galaxy/webapps/galaxy/controllers/authnz.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,7 @@ def logout(self, trans, provider, **kwargs):
success, message, redirect_uri = trans.app.authnz_manager.logout(
provider, trans, post_user_logout_href=post_user_logout_href
)
trans.handle_user_logout()
if success:
return {"redirect_uri": redirect_uri}
else:
Expand Down

0 comments on commit 1d32c21

Please sign in to comment.