X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=portal%2Fregistrationview.py;fp=portal%2Fregistrationview.py;h=fed383f76068e97580595b5a529566b6266fe469;hb=066187807cd4114e83f350ddfbc9393e11c3f779;hp=90893f75a0e7f56a0a291e5b897a749c2d95015f;hpb=18c1ab855676795b28879f4a38a144bd7b49908e;p=myslice.git diff --git a/portal/registrationview.py b/portal/registrationview.py index 90893f75..fed383f7 100644 --- a/portal/registrationview.py +++ b/portal/registrationview.py @@ -155,7 +155,7 @@ class RegistrationView (FreeAccessView): user = User.objects.create_user(reg_email, reg_email, request.POST['password']) #creating user to manifold local:user user_config = '{"firstname":"'+ reg_fname + '", "lastname":"'+ reg_lname + '", "authority":"'+ reg_auth + '"}' - user_params = {'email': reg_email, 'password': request.POST['password'], 'config': user_config} + user_params = {'email': reg_email, 'password': request.POST['password'], 'config': user_config, 'status': 1} manifold_add_user(request,user_params) #creating local:account in manifold user_id = user_detail['user_id']+1 # the user_id for the newly created user in local:user