I am implementing user authentication with django-rest_framework_simple-jwt with custom user, My models.py:
class UserManager(BaseUserManager): def crea
Did you remember to set in settings:
AUTH_USER_MODEL = 'your_app_name.User'