mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-20 23:41:17 -05:00
Just order by updated_at for inbound_numbers
This commit is contained in:
@@ -4,7 +4,7 @@ from app.models import InboundNumber
|
||||
|
||||
|
||||
def dao_get_inbound_numbers():
|
||||
return InboundNumber.query.order_by(InboundNumber.updated_at, InboundNumber.number).all()
|
||||
return InboundNumber.query.order_by(InboundNumber.updated_at).all()
|
||||
|
||||
|
||||
def dao_get_available_inbound_numbers():
|
||||
|
||||
Reference in New Issue
Block a user