diff --git a/services/web/project/__init__.py b/services/web/project/__init__.py index d1b1a61..8878de6 100644 --- a/services/web/project/__init__.py +++ b/services/web/project/__init__.py @@ -666,13 +666,14 @@ def recent_actions(current_user): "processing": random.randint(0, 10), "verifying" : random.randint(0, 10), "completed" : random.randint(0, 10), - "actions": [ + "actions2": [ {"no": "1", "description": "Welcome to MERMS" , "date": "10-10-2010 11:00 AM", "status": 'completed'}, {"no": "2", "description": "Personal Blog Setup" , "date": "10-10-2010 11:30 AM", "status": 'processing'}, {"no": "3", "description": "Web Traffic Analysis" , "date": "10-12-2010 11:30 AM", "status": 'verifying'}, - ] + ], + "actions" :array3 } - return jsonify(action_data=array3[0], recent_actions=array3) + return jsonify(action_data=action_data, recent_actions=array3) @app.route("/panel/account/products/url") @token_required