add custom template flow

This commit is contained in:
CHIEFSOFT\ameye
2025-09-29 15:17:55 -04:00
parent b8f4d98381
commit 704c8bd7ed
2 changed files with 42 additions and 0 deletions
+9
View File
@@ -432,6 +432,15 @@ def get_set_template_office():
response = OfficeTemplatesService.set_office_user_template(data)
return response
@api.route('/office/template/custom-add', methods=['POST'])
# @token_required
def get_create_custom_template_office():
data = request.get_json()
response = OfficeTemplatesService.create_custom_template(data)
return response
@api.route('/office/billings', methods=['GET'])
# @token_required
def get_subscription_billings_office():