Browse Source
Feature/Add user account currency to export (#3194)
* Add user account currency to export
* Update changelog
pull/3167/head
Christoph Califice
12 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with
11 additions and
1 deletions
-
CHANGELOG.md
-
apps/api/src/app/export/export.service.ts
-
libs/common/src/lib/interfaces/export.interface.ts
|
|
@ -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 |
|
|
|
|
|
|
|
### Added |
|
|
|
|
|
|
|
- Extended the export functionality by the user account’s currency |
|
|
|
|
|
|
|
## 2.67.0 - 2024-03-26 |
|
|
|
|
|
|
|
### Added |
|
|
|
|
|
@ -95,7 +95,10 @@ export class ExportService { |
|
|
|
: SymbolProfile.symbol |
|
|
|
}; |
|
|
|
} |
|
|
|
) |
|
|
|
), |
|
|
|
user: { |
|
|
|
settings: { currency: userCurrency } |
|
|
|
} |
|
|
|
}; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
@ -16,4 +16,5 @@ export interface Export { |
|
|
|
| 'updatedAt' |
|
|
|
| 'userId' |
|
|
|
> & { date: string; symbol: string })[]; |
|
|
|
user: { settings: { currency: string } }; |
|
|
|
} |
|
|
|