When an inbound number is allocated insert or update a row in service_sms_senders.

This commit is contained in:
Rebecca Law
2017-09-12 12:09:32 +01:00
parent f624f4f033
commit 5439b01a6e
4 changed files with 37 additions and 11 deletions

View File

@@ -202,7 +202,8 @@ class ServiceSchema(BaseSchema):
'template_statistics',
'service_provider_stats',
'service_notification_stats',
'service_sms_senders'
'service_sms_senders',
'monthly_billing'
)
strict = True
@@ -254,7 +255,8 @@ class DetailedServiceSchema(BaseSchema):
'service_provider_stats',
'service_notification_stats',
'organisation',
'service_sms_senders'
'service_sms_senders',
'monthly_billing'
)