stages/email: don't require pending user

Signed-off-by: Jens Langhammer <jens@goauthentik.io>
This commit is contained in:
Jens Langhammer 2023-05-07 20:40:11 +02:00
parent 7df0e88b9d
commit f05f440c78
No known key found for this signature in database
1 changed files with 4 additions and 3 deletions

View File

@ -114,9 +114,10 @@ class EmailStageView(ChallengeStageView):
user.is_active = True
user.save()
return self.executor.stage_ok()
if PLAN_CONTEXT_PENDING_USER not in self.executor.plan.context:
self.logger.debug("No pending user")
messages.error(self.request, _("No pending user."))
if not user.is_authenticated:
# We'll only get here if there's no user in the flow plan context
# and no authenticated user either
self.logger.debug("Unauthenticated user", user=user)
return self.executor.stage_invalid()
# Check if we've already sent the initial e-mail
if PLAN_CONTEXT_EMAIL_SENT not in self.executor.plan.context: