This commit is contained in:
Kenneth Kehl
2024-10-08 12:53:12 -07:00
parent 149ee70547
commit 3819487328

View File

@@ -51,7 +51,7 @@ from app.utils import (
def dao_fetch_all_services(only_active=False):
with Session() as session:
with Session(db.engine) as session:
stmt = (
select(Service)
.order_by(asc(Service.created_at))