contact actions

This commit is contained in:
CHIEFSOFT\ameye
2026-05-09 07:51:14 -04:00
parent a94050d32b
commit 7c0adae905
2 changed files with 3 additions and 1 deletions
+2 -1
View File
@@ -496,7 +496,7 @@ def myproduct_subscription():
data = request.get_json()
# logger.info(f"Route MyProduct Data ==>>>> {data}")
response = MyProductsService.process_subscription(data)
GenerativesService.process_generatives_list(response) #INITIATE GENERATIVES
# GenerativesService.process_generatives_list(response) #INITIATE GENERATIVES
return response
@@ -866,6 +866,7 @@ def get_web_contents():
# @token_required
def get_web_receive_contacts():
# Call the dashboard service
logger.info("CONTACT FORM FROM ****** ")
data = request.get_json()
result = ContactService.process_save_contacts(data)
return jsonify(result)
+1
View File
@@ -89,5 +89,6 @@ class ContactService(BaseService):
@staticmethod
def process_save_contacts(data):
logger.info(f"An error occurred: {data}", exc_info=True)
pass