Browse Source

Fixed a bug where it was impossible to create a superuser using standard Django tools

TonyKurts 1 month ago
parent
commit
3b52a57144
1 changed files with 1 additions and 1 deletions
  1. 1 1
      models.py

+ 1 - 1
models.py

@@ -8,7 +8,7 @@ class ShariXUser(AbstractUser):
     avatar = models.ImageField(upload_to="user_avatars/", null=True, blank=True, verbose_name="Аватар")
 
     USERNAME_FIELD = "phone_number"
-    REQUIRED_FIELDS = ['first_name', 'last_name']
+    REQUIRED_FIELDS = ['username', 'first_name', 'last_name']
 
     def __str__(self):
         return f"{self.first_name} {self.last_name}{" " + self.patronymic if self.patronymic else ""}"