Browse Source

Bugfix/add total value in base currency to redacted values (#3313)

* Add totalValueInBaseCurrency

* Update changelog
pull/3315/head
Thomas Kaul 10 months ago
committed by GitHub
parent
commit
b6ea7d23fa
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 6
      CHANGELOG.md
  2. 1
      apps/api/src/interceptors/redact-values-in-response.interceptor.ts

6
CHANGELOG.md

@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## Unreleased
### Fixed
- Fixed an issue with `totalValueInBaseCurrency` in the value redaction interceptor for the impersonation mode
## 2.74.0 - 2024-04-20
### Added

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

@ -57,6 +57,7 @@ export class RedactValuesInResponseInterceptor<T>
'quantity',
'symbolMapping',
'totalBalanceInBaseCurrency',
'totalValueInBaseCurrency',
'unitPrice',
'value',
'valueInBaseCurrency'

Loading…
Cancel
Save