Browse Source
Feature/minor code cleanup (#667)
* Sort imports
* Update changelog
pull/668/head
Thomas Kaul
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with
3 additions and
1 deletions
-
CHANGELOG.md
-
apps/api/src/interceptors/transform-data-source-in-request.interceptor.ts
-
apps/api/src/interceptors/transform-data-source-in-response.interceptor.ts
|
|
@ -9,7 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
### Fixed |
|
|
|
|
|
|
|
-Fixed the data source of the _Fear & Greed Index_ (market mood) |
|
|
|
- Fixed the data source of the _Fear & Greed Index_ (market mood) |
|
|
|
|
|
|
|
### Todo |
|
|
|
|
|
|
|
|
|
@ -6,6 +6,7 @@ import { |
|
|
|
NestInterceptor |
|
|
|
} from '@nestjs/common'; |
|
|
|
import { Observable } from 'rxjs'; |
|
|
|
|
|
|
|
import { ConfigurationService } from '../services/configuration.service'; |
|
|
|
|
|
|
|
@Injectable() |
|
|
|
|
|
@ -7,6 +7,7 @@ import { |
|
|
|
} from '@nestjs/common'; |
|
|
|
import { Observable } from 'rxjs'; |
|
|
|
import { map } from 'rxjs/operators'; |
|
|
|
|
|
|
|
import { ConfigurationService } from '../services/configuration.service'; |
|
|
|
|
|
|
|
@Injectable() |
|
|
|