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]) print(account[0])
dash_data = { dash_data = {
"username": "sanyaameye", "username": account[0]["username"],
"account_name": "This is the test account name", "account_name": account[0]["account_name"],
"firstname": "TestFirstname", "firstname": account[0]["firstname"],
"lastname" : "Testlastname", "lastname" : account[0]["lastname"],
"email": "bestemail@email.com" "email": account[0]["email"],
"updated": account[0]["updated"],
} }
return jsonify(dash_data=dash_data) return jsonify(dash_data=dash_data)