Browse Source
Feature/add ghostfolio as default to data sources (#1122)
* Add GHOSTFOLIO
* Update changelog
pull/1127/head
Thomas Kaul
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
4 additions and
1 deletions
-
CHANGELOG.md
-
apps/api/src/services/configuration.service.ts
|
|
@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
### Added |
|
|
|
|
|
|
|
- Added `GHOSTFOLIO` as a default to `DATA_SOURCES` |
|
|
|
- Added the `AGPLv3` logo to the landing page |
|
|
|
|
|
|
|
### Changed |
|
|
|
|
|
@ -15,7 +15,9 @@ export class ConfigurationService { |
|
|
|
BASE_CURRENCY: str({ default: 'USD' }), |
|
|
|
CACHE_TTL: num({ default: 1 }), |
|
|
|
DATA_SOURCE_PRIMARY: str({ default: DataSource.YAHOO }), |
|
|
|
DATA_SOURCES: json({ default: [DataSource.YAHOO] }), |
|
|
|
DATA_SOURCES: json({ |
|
|
|
default: [DataSource.GHOSTFOLIO, DataSource.YAHOO] |
|
|
|
}), |
|
|
|
ENABLE_FEATURE_BLOG: bool({ default: false }), |
|
|
|
ENABLE_FEATURE_CUSTOM_SYMBOLS: bool({ default: false }), |
|
|
|
ENABLE_FEATURE_FEAR_AND_GREED_INDEX: bool({ default: false }), |
|
|
|