action data

This commit is contained in:
CHIEFSOFT\ameye
2024-12-12 12:09:06 -05:00
parent 2cea10535e
commit ca51670b73
+10 -1
View File
@@ -168,5 +168,14 @@ def panel_products():
@app.route("/panel/account/actions")
@token_required
def recent_actions():
return jsonify(hello="ameye world")
action_data = {
"last_update": "10-10-2021 10 AM",
"initial": "0",
"processing": "0",
"verifying" : "0",
"completed" : "0",
"actions": []
}
return jsonify(action_data=action_data)