mirror of
https://github.com/open-webui/open-webui
synced 2025-04-05 13:15:36 +00:00
fix: db
This commit is contained in:
parent
2aa5d26735
commit
ebcc5be1bf
@ -159,7 +159,7 @@ class AuthsTable:
|
|||||||
log.info(f"authenticate_user_by_trusted_header: {email}")
|
log.info(f"authenticate_user_by_trusted_header: {email}")
|
||||||
try:
|
try:
|
||||||
with get_db() as db:
|
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:
|
if auth:
|
||||||
user = Users.get_user_by_id(auth.id)
|
user = Users.get_user_by_id(auth.id)
|
||||||
return user
|
return user
|
||||||
|
@ -100,7 +100,7 @@ class TagTable:
|
|||||||
) -> Optional[TagModel]:
|
) -> Optional[TagModel]:
|
||||||
try:
|
try:
|
||||||
with get_db() as db:
|
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)
|
return TagModel.model_validate(tag)
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
return None
|
return None
|
||||||
|
Loading…
Reference in New Issue
Block a user