mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-20 15:31:15 -05:00
23 lines
616 B
Python
23 lines
616 B
Python
from app import db
|
|
from app.dao.dao_utils import transactional
|
|
from app.models import InboundNumber
|
|
|
|
|
|
def dao_get_inbound_numbers():
|
|
return InboundNumber.query.all()
|
|
|
|
|
|
def dao_get_available_inbound_numbers():
|
|
return InboundNumber.query.filter(InboundNumber.active, InboundNumber.service_id.is_(None)).all()
|
|
|
|
|
|
def dao_get_inbound_number_for_service(service_id):
|
|
return InboundNumber.query.filter(InboundNumber.service_id == service_id).all()
|
|
|
|
|
|
@transactional
|
|
def dao_set_inbound_number_to_service(service_id, inbound_number):
|
|
inbound_number.service_id = service_id
|
|
|
|
db.session.add(inbound_number)
|