flows: fix error when using cancel flow

Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
Jens Langhammer 2021-05-15 17:42:37 +02:00
parent 968b7ec17a
commit 8925787a13
1 changed files with 1 additions and 1 deletions

View File

@ -298,7 +298,7 @@ class CancelView(View):
if SESSION_KEY_PLAN in request.session:
del request.session[SESSION_KEY_PLAN]
LOGGER.debug("Canceled current plan")
return redirect("authentik_core:default-invalidation")
return redirect("authentik_flows:default-invalidation")
class ToDefaultFlow(View):