This commit is contained in:
CHIEFSOFT\ameye
2024-12-16 06:54:30 -05:00
parent 429fa094f1
commit c60df79f63
+6 -5
View File
@@ -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)