8
0
Fork 0
mirror of https://gitlab.federez.net/re2o/re2o synced 2024-07-02 12:14:05 +00:00

Fix la creation superuser broken

This commit is contained in:
Gabriel Detraz 2018-01-21 16:40:00 +00:00
parent 3648046ddf
commit 2070d3841b

View file

@ -143,9 +143,10 @@ class UserManager(BaseUserManager):
if not linux_user_check(pseudo):
raise ValueError('Username shall only contain [a-z0-9-]')
user = self.model(
user = Adherent(
pseudo=pseudo,
surname=surname,
name=surname,
email=self.normalize_email(email),
)
@ -824,6 +825,8 @@ class Adherent(User):
null=True
)
def get_instance(adherentid, *args, **kwargs):
"""Try to find an instance of `Adherent` with the given id.