-
Notifications
You must be signed in to change notification settings - Fork 159
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: remove user locally if no logout url in IdP #10974
Conversation
Thanks for opening this pull request! The maintainers of this repository would appreciate it if you would create a changelog item based on your changes. |
f9ea063
to
19dc4c1
Compare
Currently thinking about how to test this properly. I'm looking into setting up authelia (because that doesn't have an |
@@ -82,7 +82,6 @@ export default defineComponent({ | |||
} | |||
} | |||
return { | |||
name: 'login', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No idea why we had the name
key here... maybe just by mistake and it was really meant for the to
route?!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can't test it obviously, but code LGTM (aside from one spelling mistake )
Co-authored-by: Jannik Stehle <50302941+JammingBen@users.noreply.github.com>
Quality Gate passedIssues Measures |
Description
There are IdPs without an
endSessionEndpoint
(e.g. Authelia). In those cases we just need to unload the currently authenticated user.Related Issue
Motivation and Context
Hardening.
Types of changes