Browse Source

Bugfix/last request date in users table of admin control panel (#7021)

* Fix last request date

* Update changelog
pull/7023/head^2
Thomas Kaul 1 week ago
committed by GitHub
parent
commit
a0b7d5c4c1
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 1
      CHANGELOG.md
  2. 4
      apps/api/src/app/admin/admin.service.ts

1
CHANGELOG.md

@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed
- Fixed an issue in the import dividends dialog
- Fixed the last request date in the users table of the admin control panel
## 3.9.0 - 2026-06-12

4
apps/api/src/app/admin/admin.service.ts

@ -850,7 +850,7 @@ export class AdminService {
activityCount: true,
country: true,
dataProviderGhostfolioDailyRequests: true,
updatedAt: true
lastRequestAt: true
}
},
createdAt: true,
@ -896,7 +896,7 @@ export class AdminService {
activityCount: _count.activities || 0,
country: analytics?.country,
dailyApiRequests: analytics?.dataProviderGhostfolioDailyRequests || 0,
lastActivity: analytics?.updatedAt
lastActivity: analytics?.lastRequestAt
};
}
);

Loading…
Cancel
Save