Compare commits
No commits in common. "3c35ac4075172c99bfaff70d9593459703723388" and "56bc0f2d69775054dd0f8c090308f820e26c5ebb" have entirely different histories.
3c35ac4075
...
56bc0f2d69
@ -85,7 +85,7 @@ class UserService:
|
||||
with db_connection.cursor(dictionary=True) as cursor:
|
||||
|
||||
cursor.execute("select id, password from user where username = %s", (username,))
|
||||
result = cursor.fetchone()
|
||||
result = db_cursor.fetchone()
|
||||
|
||||
user_id = result['id']
|
||||
password_hash = result['password']
|
||||
|
@ -5,5 +5,3 @@ python-dotenv==1.0.1
|
||||
Flask-JWT-Extended==4.5.3
|
||||
PyJWT==2.8.0
|
||||
Flask-Mail==0.9.1
|
||||
redis==4.5.4
|
||||
bcrypt==4.1.2
|
Loading…
x
Reference in New Issue
Block a user