Browse Source

Bugfix/add unit price in asset profile currency to redacted values (#5547)

* Add unitPriceInAssetProfileCurrency

* Update changelog
pull/5530/merge
Thomas Kaul 2 days ago
committed by GitHub
parent
commit
e2382834c3
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 4
      CHANGELOG.md
  2. 1
      apps/api/src/interceptors/redact-values-in-response/redact-values-in-response.interceptor.ts

4
CHANGELOG.md

@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Refreshed the cryptocurrencies list - Refreshed the cryptocurrencies list
### Fixed
- Fixed an issue with `unitPriceInAssetProfileCurrency` in the value redaction interceptor for the impersonation mode
## 2.200.0 - 2025-09-17 ## 2.200.0 - 2025-09-17
### Changed ### Changed

1
apps/api/src/interceptors/redact-values-in-response/redact-values-in-response.interceptor.ts

@ -61,6 +61,7 @@ export class RedactValuesInResponseInterceptor<T>
'totalInterestInBaseCurrency', 'totalInterestInBaseCurrency',
'totalValueInBaseCurrency', 'totalValueInBaseCurrency',
'unitPrice', 'unitPrice',
'unitPriceInAssetProfileCurrency',
'value', 'value',
'valueInBaseCurrency' 'valueInBaseCurrency'
].map((attribute) => { ].map((attribute) => {

Loading…
Cancel
Save