Невозможно войти в систему, потому что Django сохраняет пароли в виде обычного текста, но

#django #django-rest-framework #django #django-rest-framework Вопрос: class UserManager(BaseUserManager): def create_user(self, username, email, password=None): if username is None: raise TypeError('User should have a username') if email is None: raise TypeError('User should have…

Продолжить чтениеНевозможно войти в систему, потому что Django сохраняет пароли в виде обычного текста, но