diff --git a/app/api/routes/routes.py b/app/api/routes/routes.py index 9713cc0..1ada26e 100644 --- a/app/api/routes/routes.py +++ b/app/api/routes/routes.py @@ -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 @@ -933,7 +933,7 @@ def refresh_daily_report(): def refresh_generative_action(): data = request.get_json() logger.info(f"Generative Actions ==>>>> {data}") - # AutomationCalls.process_stripe_payment_refresh(data) + GenerativesService.process_generatives_list(data) #INITIATE GENERATIVES return {"status": "ok"}, 200 # Health Check Endpoint