generative actions

This commit is contained in:
CHIEFSOFT\ameye
2026-05-08 18:22:01 -04:00
parent 9ca753df59
commit 972873e570
+7 -1
View File
@@ -928,7 +928,13 @@ def refresh_daily_report():
# AutomationCalls.process_stripe_payment_refresh(data)
return {"status": "ok"}, 200
# Generative Actions
@api.route("/auto/generativeAction", methods=["GET"])
def refresh_generative_action():
data = request.get_json()
logger.info(f"Generative Actions ==>>>> {data}")
# AutomationCalls.process_stripe_payment_refresh(data)
return {"status": "ok"}, 200
# Health Check Endpoint
@api.route("/health", methods=["GET"])