Commit ebcc5be1 authored by Timothy J. Baek's avatar Timothy J. Baek
Browse files

fix: db

parent 2aa5d267
......@@ -159,7 +159,7 @@ class AuthsTable:
log.info(f"authenticate_user_by_trusted_header: {email}")
try:
with get_db() as db:
auth = db.query(Auth).filter(email=email, active=True).first()
auth = db.query(Auth).filter_by(email=email, active=True).first()
if auth:
user = Users.get_user_by_id(auth.id)
return user
......
......@@ -100,7 +100,7 @@ class TagTable:
) -> Optional[TagModel]:
try:
with get_db() as db:
tag = db.query(Tag).filter(name=name, user_id=user_id).first()
tag = db.query(Tag).filter_by(name=name, user_id=user_id).first()
return TagModel.model_validate(tag)
except Exception as e:
return None
......
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