X-Git-Url: http://git.onelab.eu/?p=myslice.git;a=blobdiff_plain;f=portal%2Fregistrationview.py;h=455b17543dc20cb5101a9aec69e47dac44bc81f3;hp=90893f75a0e7f56a0a291e5b897a749c2d95015f;hb=0d118a5f600b06616c2841e92642a303d8785269;hpb=8a0b7b28c23107508789ca14b812ada1cfbe604b diff --git a/portal/registrationview.py b/portal/registrationview.py index 90893f75..455b1754 100644 --- a/portal/registrationview.py +++ b/portal/registrationview.py @@ -149,13 +149,14 @@ class RegistrationView (FreeAccessView): email = reg_email, password = request.POST['password'], keypair = account_config, + pi = '', ) b.save() # saves the user to django auth_user table [needed for password reset] 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