Fixed an issue with Azure and OIDC sessions not being properly cleared on logout.

This commit is contained in:
Matt Scott 2023-04-11 19:09:33 -04:00
parent c98c174c23
commit f66d64ecbc
No known key found for this signature in database
GPG Key ID: A9A0AFFC0E079001

View File

@ -553,6 +553,8 @@ def clear_session():
session.pop('user_id', None)
session.pop('github_token', None)
session.pop('google_token', None)
session.pop('azure_token', None)
session.pop('oidc_token', None)
session.pop('authentication_type', None)
session.pop('remote_user', None)
logout_user()