From df02982983a8867437c6f6afe1fb1632088963e3 Mon Sep 17 00:00:00 2001 From: Adarnof Date: Sat, 14 Jan 2017 02:28:13 -0500 Subject: [PATCH] Login newly registered users. Closes #642 --- authentication/views.py | 1 + 1 file changed, 1 insertion(+) diff --git a/authentication/views.py b/authentication/views.py index 7acbc8b0..1b72855a 100644 --- a/authentication/views.py +++ b/authentication/views.py @@ -67,6 +67,7 @@ def register_user_view(request): user.save() logger.info("Created new user %s" % user) + login(request, user) messages.warning(request, 'Add an API key to set up your account.') return redirect("auth_dashboard")