diff --git a/services/web/project/__init__.py b/services/web/project/__init__.py index 4871600..b6f9c4d 100644 --- a/services/web/project/__init__.py +++ b/services/web/project/__init__.py @@ -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) +