Browse Source
Feature/add missing filters.assetClasses to user settings interface (#5572)
* Add filters.assetClasses
pull/5151/merge
Thomas Kaul
4 weeks ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
3 additions and
0 deletions
-
libs/common/src/lib/interfaces/user-settings.interface.ts
|
|
@ -7,6 +7,8 @@ import { |
|
|
|
} from '@ghostfolio/common/types'; |
|
|
|
import { PerformanceCalculationType } from '@ghostfolio/common/types/performance-calculation-type.type'; |
|
|
|
|
|
|
|
import { AssetClass } from '@prisma/client'; |
|
|
|
|
|
|
|
export interface UserSettings { |
|
|
|
annualInterestRate?: number; |
|
|
|
baseCurrency?: string; |
|
|
@ -15,6 +17,7 @@ export interface UserSettings { |
|
|
|
dateRange?: DateRange; |
|
|
|
emergencyFund?: number; |
|
|
|
'filters.accounts'?: string[]; |
|
|
|
'filters.assetClasses'?: AssetClass[]; |
|
|
|
'filters.dataSource'?: string; |
|
|
|
'filters.symbol'?: string; |
|
|
|
'filters.tags'?: string[]; |
|
|
|