Replies: 1 comment
-
I have been able to achieve this with a custom flow which just has a redirect stage (and no logout stage). The logout is done as an expression policy bound to the redirect stage, with this content: from django.contrib.auth import logout
ak_logger.info("Logged out", user=request.user)
logout(request.http_request)
return True |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi everyone!
I'm looking for a way to fully log out from Authentik without being redirected to the page that offers "Log out," "Stay logged in," or "Overview." Ideally, I'd like users to be directed straight to a custom URL after they log out.
Is there a way to bypass the intermediate page?
Where can I configure a custom redirect URL for the logout process?
Any pointers or guidance would be much appreciated. Thank you!
Beta Was this translation helpful? Give feedback.
All reactions