Added free_sms_fragment_limit model, schema, dao and Rest

This commit is contained in:
venusbb
2017-10-24 13:23:24 +01:00
parent b0872d9466
commit 59dd343254
7 changed files with 286 additions and 8 deletions

View File

@@ -66,7 +66,8 @@ from app.errors import (
InvalidRequest,
register_errors
)
from app.models import Service, ServiceInboundApi
from app.models import Service, ServiceInboundApi, AnnualBilling
from app.schema_validation import validate
from app.service import statistics
from app.service.service_inbound_api_schema import service_inbound_api, update_service_inbound_api_schema
@@ -87,6 +88,7 @@ from app.schemas import (
detailed_service_schema
)
from app.utils import pagination_links
from app.dao.notifications_dao import get_financial_year
service_blueprint = Blueprint('service', __name__)