From e1cec83cf6838a391b5810a655a0994f85c625de Mon Sep 17 00:00:00 2001 From: Przemek Lewandowski Date: Thu, 24 Nov 2011 15:30:55 +0100 Subject: [PATCH] Fixed is_new user flag from pipelines to complete_process view helper. --- social_auth/backends/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/social_auth/backends/__init__.py b/social_auth/backends/__init__.py index 182b3f5c0..53c6cb3e9 100644 --- a/social_auth/backends/__init__.py +++ b/social_auth/backends/__init__.py @@ -143,6 +143,7 @@ def authenticate(self, *args, **kwargs): # account user = social_user.user user.social_user = social_user + user.is_new = kwargs.get('is_new') return user def extra_data(self, user, uid, response, details):