report service added

This commit is contained in:
CHIEFSOFT\ameye
2026-01-03 10:24:13 -05:00
parent a521fce94c
commit 5a45449636
3 changed files with 84 additions and 1 deletions
+11 -1
View File
@@ -14,7 +14,7 @@ from app.api.services import (
CommonDataService,
OfficeCustomerService,
GenerativesService, OfficeUsersService, OfficeTemplatesService, OfficeCountryService, WebsiteService,
FileUploadService
FileUploadService, ReportService
)
from app.api.services.comments import CommentsService
from app.models import Country
@@ -269,6 +269,16 @@ def get_myproduct_templates():
return response
@api.route("/panel/report/topics", methods=["POST"])
@jwt_required()
def merms_report_topics():
data = request.get_json()
response = ReportService.process_report_topic_request(data)
return response
@api.route("/panel/account/products/color-styles", methods=["POST"])
# @token_required
def get_myproduct_colorstyles():