mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-17 00:44:51 -05:00
This removes some code which is duplicative and obscure (ie it’s not very clear why we do `"a" * 73` even though there is a Very Good Reason for doing so).
17 lines
487 B
Python
17 lines
487 B
Python
from app.notify_client import NotifyAdminAPIClient
|
|
|
|
|
|
class InboundNumberClient(NotifyAdminAPIClient):
|
|
|
|
def get_available_inbound_sms_numbers(self):
|
|
return self.get(url='/inbound-number/available')
|
|
|
|
def get_all_inbound_sms_number_service(self):
|
|
return self.get('/inbound-number')
|
|
|
|
def get_inbound_sms_number_for_service(self, service_id):
|
|
return self.get('/inbound-number/service/{}'.format(service_id))
|
|
|
|
|
|
inbound_number_client = InboundNumberClient()
|