reporting
This commit is contained in:
@@ -744,6 +744,13 @@ def get_recent_signup_office():
|
|||||||
result = OfficeDashboardService.get_recent_signup_data(filters)
|
result = OfficeDashboardService.get_recent_signup_data(filters)
|
||||||
return jsonify(result)
|
return jsonify(result)
|
||||||
|
|
||||||
|
@api.route('/office/recent-account', methods=['GET'])
|
||||||
|
def get_recent_account_office():
|
||||||
|
# Call the dashboard service
|
||||||
|
filters = {}
|
||||||
|
result = OfficeDashboardService.get_recent_signup_data(filters)
|
||||||
|
return jsonify(result)
|
||||||
|
|
||||||
|
|
||||||
@api.route('/office/right-sidebar', methods=['GET'])
|
@api.route('/office/right-sidebar', methods=['GET'])
|
||||||
def get_office_sidebar():
|
def get_office_sidebar():
|
||||||
@@ -913,6 +920,14 @@ def refresh_payhx():
|
|||||||
AutomationCalls.process_stripe_payment_refresh(data)
|
AutomationCalls.process_stripe_payment_refresh(data)
|
||||||
return {"status": "ok"}, 200
|
return {"status": "ok"}, 200
|
||||||
|
|
||||||
|
# Automatic Reporting
|
||||||
|
@api.route("/auto/dailyReport", methods=["GET"])
|
||||||
|
def refresh_payhx():
|
||||||
|
data = {}
|
||||||
|
# AutomationCalls.process_stripe_payment_refresh(data)
|
||||||
|
return {"status": "ok"}, 200
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Health Check Endpoint
|
# Health Check Endpoint
|
||||||
@api.route("/health", methods=["GET"])
|
@api.route("/health", methods=["GET"])
|
||||||
|
|||||||
Reference in New Issue
Block a user