mirror of
https://github.com/GSA/notifications-api.git
synced 2026-08-18 05:28:49 -04:00
fix inbound_number_dao
This commit is contained in:
@@ -7,7 +7,7 @@ from app.models import InboundNumber
|
|||||||
|
|
||||||
def dao_get_inbound_numbers():
|
def dao_get_inbound_numbers():
|
||||||
stmt = select(InboundNumber).order_by(InboundNumber.updated_at)
|
stmt = select(InboundNumber).order_by(InboundNumber.updated_at)
|
||||||
return db.session.execute(stmt).scalars().all()
|
return db.session.execute(stmt).all()
|
||||||
|
|
||||||
|
|
||||||
def dao_get_available_inbound_numbers():
|
def dao_get_available_inbound_numbers():
|
||||||
|
|||||||
Reference in New Issue
Block a user