diff --git a/orchestra/contrib/accounts/models.py b/orchestra/contrib/accounts/models.py index 52d77525..ba82aa30 100644 --- a/orchestra/contrib/accounts/models.py +++ b/orchestra/contrib/accounts/models.py @@ -51,6 +51,10 @@ class Account(auth.AbstractBaseUser): USERNAME_FIELD = 'username' REQUIRED_FIELDS = ['email'] + + def __init__(self, *args, **kwargs): + kwargs.pop('is_staff', None) + super().__init__(*args, **kwargs) def __str__(self): return self.name