fix: fixed bug in auth and me

This commit is contained in:
Андрей Сумин
2025-03-01 20:11:11 +03:00
parent 0fdc905562
commit c87bace839
2 changed files with 2 additions and 3 deletions
-1
View File
@@ -45,7 +45,6 @@ def sign_up(request, data: RegisterSchema):
)
def sign_in(request, data: LoginSchema):
user = User.objects.filter(email=data.email).first()
print(check_password(data.password, user.password))
if not user:
raise AuthenticationError
if not check_password(data.password, user.password):