Browse Source
Feature/refactor demo user (#604)
* Refactor demo user id
* Update changelog
pull/605/head
Thomas Kaul
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with
5 additions and
4 deletions
-
CHANGELOG.md
-
apps/api/src/app/info/info.service.ts
-
libs/common/src/lib/config.ts
-
libs/common/src/lib/helper.ts
|
|
@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
### Changed |
|
|
|
|
|
|
|
- Start refactoring _transactions_ to _activities_ |
|
|
|
- Refactored the demo user id |
|
|
|
- Upgraded `angular` from version `13.0.2` to `13.1.1` |
|
|
|
- Upgraded `chart.js` from version `3.5.0` to `3.7.0` |
|
|
|
- Upgraded `Nx` from version `13.3.0` to `13.4.1` |
|
|
|
|
|
@ -6,6 +6,7 @@ import { ExchangeRateDataService } from '@ghostfolio/api/services/exchange-rate- |
|
|
|
import { PrismaService } from '@ghostfolio/api/services/prisma.service'; |
|
|
|
import { PropertyService } from '@ghostfolio/api/services/property/property.service'; |
|
|
|
import { |
|
|
|
DEMO_USER_ID, |
|
|
|
PROPERTY_IS_READ_ONLY_MODE, |
|
|
|
PROPERTY_SLACK_COMMUNITY_USERS, |
|
|
|
PROPERTY_STRIPE_CONFIG, |
|
|
@ -23,7 +24,6 @@ import { subDays } from 'date-fns'; |
|
|
|
@Injectable() |
|
|
|
export class InfoService { |
|
|
|
private static CACHE_KEY_STATISTICS = 'STATISTICS'; |
|
|
|
private static DEMO_USER_ID = '9b112b4d-3b7d-4bad-9bdd-3b0f7b4dac2f'; |
|
|
|
|
|
|
|
public constructor( |
|
|
|
private readonly configurationService: ConfigurationService, |
|
|
@ -196,7 +196,7 @@ export class InfoService { |
|
|
|
|
|
|
|
private getDemoAuthToken() { |
|
|
|
return this.jwtService.sign({ |
|
|
|
id: InfoService.DEMO_USER_ID |
|
|
|
id: DEMO_USER_ID |
|
|
|
}); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
@ -10,6 +10,8 @@ export const defaultDateRangeOptions: ToggleOption[] = [ |
|
|
|
{ label: 'Max', value: 'max' } |
|
|
|
]; |
|
|
|
|
|
|
|
export const DEMO_USER_ID = '9b112b4d-3b7d-4bad-9bdd-3b0f7b4dac2f'; |
|
|
|
|
|
|
|
export const ghostfolioScraperApiSymbolPrefix = '_GF_'; |
|
|
|
export const ghostfolioCashSymbol = `${ghostfolioScraperApiSymbolPrefix}CASH`; |
|
|
|
export const ghostfolioFearAndGreedIndexSymbol = `${ghostfolioScraperApiSymbolPrefix}FEAR_AND_GREED_INDEX`; |
|
|
|
|
|
@ -3,8 +3,6 @@ import { getDate, getMonth, getYear, parse, subDays } from 'date-fns'; |
|
|
|
|
|
|
|
import { ghostfolioScraperApiSymbolPrefix } from './config'; |
|
|
|
|
|
|
|
export const DEMO_USER_ID = '9b112b4d-3b7d-4bad-9bdd-3b0f7b4dac2f'; |
|
|
|
|
|
|
|
export function capitalize(aString: string) { |
|
|
|
return aString.charAt(0).toUpperCase() + aString.slice(1).toLowerCase(); |
|
|
|
} |
|
|
|