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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
3 additions and
2 deletions
-
CHANGELOG.md
-
apps/api/src/app/admin/admin.service.ts
|
|
@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
### Fixed |
|
|
### Fixed |
|
|
|
|
|
|
|
|
- Fixed an issue in the import dividends dialog |
|
|
- 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 |
|
|
## 3.9.0 - 2026-06-12 |
|
|
|
|
|
|
|
|
|
|
|
@ -850,7 +850,7 @@ export class AdminService { |
|
|
activityCount: true, |
|
|
activityCount: true, |
|
|
country: true, |
|
|
country: true, |
|
|
dataProviderGhostfolioDailyRequests: true, |
|
|
dataProviderGhostfolioDailyRequests: true, |
|
|
updatedAt: true |
|
|
lastRequestAt: true |
|
|
} |
|
|
} |
|
|
}, |
|
|
}, |
|
|
createdAt: true, |
|
|
createdAt: true, |
|
|
@ -896,7 +896,7 @@ export class AdminService { |
|
|
activityCount: _count.activities || 0, |
|
|
activityCount: _count.activities || 0, |
|
|
country: analytics?.country, |
|
|
country: analytics?.country, |
|
|
dailyApiRequests: analytics?.dataProviderGhostfolioDailyRequests || 0, |
|
|
dailyApiRequests: analytics?.dataProviderGhostfolioDailyRequests || 0, |
|
|
lastActivity: analytics?.updatedAt |
|
|
lastActivity: analytics?.lastRequestAt |
|
|
}; |
|
|
}; |
|
|
} |
|
|
} |
|
|
); |
|
|
); |
|
|
|