Skip to content
Snippets Groups Projects
Commit a352bb1c authored by Tom Teichler's avatar Tom Teichler :beers:
Browse files

Connect email to person on account registration. Closes #44

parent dc3c2c8c
No related branches found
No related tags found
No related merge requests found
Pipeline #95487 canceled
...@@ -374,6 +374,10 @@ class AccountRegisterWizardView(SessionWizardView): ...@@ -374,6 +374,10 @@ class AccountRegisterWizardView(SessionWizardView):
}, },
) )
if _email:
_email.person = person
_email.save()
return redirect("index") return redirect("index")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment