New routes
This commit is contained in:
@@ -415,6 +415,28 @@ def get_subcriptions_view_office():
|
||||
response = OfficeDashboardService.get_subscription_view_data(filters)
|
||||
return response
|
||||
|
||||
@api.route('/office/template/set-custom', methods=['POST'])
|
||||
# @token_required
|
||||
def get_set_custom_template_office():
|
||||
# Call the dashboard service
|
||||
filters = {
|
||||
'subscription_uid': request.args.get('subscription_uid')
|
||||
}
|
||||
|
||||
response = []
|
||||
return response
|
||||
|
||||
|
||||
@api.route('/office/template/set-template', methods=['POST'])
|
||||
# @token_required
|
||||
def get_set_template_office():
|
||||
# Call the dashboard service
|
||||
filters = {
|
||||
'subscription_uid': request.args.get('subscription_uid')
|
||||
}
|
||||
|
||||
response = []
|
||||
return response
|
||||
|
||||
@api.route('/office/billings', methods=['GET'])
|
||||
# @token_required
|
||||
|
||||
Reference in New Issue
Block a user