From f24214533fee31bb81a64ea99899897ba26fef17 Mon Sep 17 00:00:00 2001 From: "CHIEFSOFT\\ameye" Date: Sat, 11 Jan 2025 14:49:07 -0500 Subject: [PATCH] array3 --- services/web/project/__init__.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) 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