recent signup

This commit is contained in:
CHIEFSOFT\ameye
2025-10-17 11:58:06 -04:00
parent d9f9e7d6b7
commit 706ee60d3e
+3 -3
View File
@@ -463,15 +463,14 @@ class OfficeDashboardService(BaseService):
recent_login_data = []
for subs in recentLogin:
recent_login_data.append({
'id': subs.id,
'member_id': subs.id,
'firstname' : subs.firstname,
'lastname' : subs.lastname,
'username' : subs.username,
'member_uid': subs.uid,
"added": subs.added,
})
# Calculate total pages
total_pages = (total_count + limit - 1) // limit
@@ -493,6 +492,7 @@ class OfficeDashboardService(BaseService):
'recent_payment_summary': recent_payment_summary,
'recent_deployment_summary': recent_deployment_summary,
'recent_login': recent_login_data,
'recent_signup': recent_login_data,
'recent_deployment_error': [],
}