From c60df79f63d24f0b3f1299e732a6e109223288ce Mon Sep 17 00:00:00 2001 From: "CHIEFSOFT\\ameye" Date: Mon, 16 Dec 2024 06:54:30 -0500 Subject: [PATCH] updated --- services/web/project/__init__.py | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/services/web/project/__init__.py b/services/web/project/__init__.py index 6591978..73c3ca5 100644 --- a/services/web/project/__init__.py +++ b/services/web/project/__init__.py @@ -241,11 +241,12 @@ def dashboard(current_user): print(account[0]) dash_data = { - "username": "sanyaameye", - "account_name": "This is the test account name", - "firstname": "TestFirstname", - "lastname" : "Testlastname", - "email": "bestemail@email.com" + "username": account[0]["username"], + "account_name": account[0]["account_name"], + "firstname": account[0]["firstname"], + "lastname" : account[0]["lastname"], + "email": account[0]["email"], + "updated": account[0]["updated"], } return jsonify(dash_data=dash_data)