(self, email, password, key="")
| 15 | return user |
| 16 | |
| 17 | def create_superuser(self, email, password, key=""): |
| 18 | user = self.create_user(email, password=password, key=key) |
| 19 | user.is_admin = True |
| 20 | user.save(using=self._db) |
| 21 | return user |
| 22 | |
| 23 | |
| 24 | class LessPassUser(AbstractBaseUser): |
nothing calls this directly
no test coverage detected