Browse Source

Feature/improve asset profile validation in activities import for manual data source (#2886)

* Improve asset profile validation for MANUAL data source

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

4
CHANGELOG.md

@ -12,6 +12,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Added the holdings table to the account detail dialog
- Validated the currency of the search results in the _EOD Historical Data_ service
### Changed
- Improved the asset profile validation for `MANUAL` data source in the activities import
## 2.40.0 - 2024-01-15
### Changed

2
apps/api/src/app/import/import.service.ts

@ -583,7 +583,6 @@ export class ImportService {
);
}
if (dataSource !== 'MANUAL') {
const assetProfile = (
await this.dataProviderService.getAssetProfiles([
{ dataSource, symbol }
@ -611,7 +610,6 @@ export class ImportService {
assetProfiles[getAssetProfileIdentifier({ dataSource, symbol })] =
assetProfile;
}
}
return assetProfiles;
}

Loading…
Cancel
Save