Explorar el Código

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

TonyKurts hace 1 mes
padre
commit
3b52a57144
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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 ""}"