"examples/vscode:/vscode.git/clone" did not exist on "2e69cf16fea891eadd128d912c3c8a4254a007af"
Unverified Commit a7fb560e authored by Timothy Jaeryang Baek's avatar Timothy Jaeryang Baek Committed by GitHub
Browse files

Merge pull request #3699 from Peter-De-Ath/fix-update-user-email-auth

fix auth update_email_by_id - add db.commit
parents d51e8665 1bb27242
...@@ -173,6 +173,7 @@ class AuthsTable: ...@@ -173,6 +173,7 @@ class AuthsTable:
result = ( result = (
db.query(Auth).filter_by(id=id).update({"password": new_password}) db.query(Auth).filter_by(id=id).update({"password": new_password})
) )
db.commit()
return True if result == 1 else False return True if result == 1 else False
except: except:
return False return False
...@@ -182,6 +183,7 @@ class AuthsTable: ...@@ -182,6 +183,7 @@ class AuthsTable:
with get_db() as db: with get_db() as db:
result = db.query(Auth).filter_by(id=id).update({"email": email}) result = db.query(Auth).filter_by(id=id).update({"email": email})
db.commit()
return True if result == 1 else False return True if result == 1 else False
except: except:
return False return False
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment