git://git.onelab.eu
/
unfold.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
95684c9
)
REG: user_hrn unique [using random numbers at the end]
author
Yasin
<mohammed-yasin.rahman@lip6.fr>
Tue, 21 Jan 2014 13:09:23 +0000
(14:09 +0100)
committer
Yasin
<mohammed-yasin.rahman@lip6.fr>
Tue, 21 Jan 2014 13:09:23 +0000
(14:09 +0100)
portal/registrationview.py
patch
|
blob
|
history
diff --git
a/portal/registrationview.py
b/portal/registrationview.py
index
26f9e67
..
c966b52
100644
(file)
--- a/
portal/registrationview.py
+++ b/
portal/registrationview.py
@@
-1,5
+1,6
@@
import os.path, re
import json
+from random import randint
from django.core.mail import send_mail
from django.contrib.auth.models import User
@@
-74,7
+75,7
@@
class RegistrationView (FreeAccessView):
#prepare user_hrn
split_email = reg_email.split("@")[0]
split_email = split_email.replace(".", "_")
- user_hrn = reg_auth + '.' + split_email
+ user_hrn = reg_auth + '.' + split_email
+ str(randint(1,1000000))
UserModel = get_user_model()