Browse Source
Task/restructure pricing page (#6037)
* Restructure pricing page
pull/6039/head
Thomas Kaul
2 days ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
8 additions and
0 deletions
-
apps/client/src/app/pages/pricing/pricing-page.component.ts
|
|
|
@ -54,23 +54,30 @@ export class GfPricingPageComponent implements OnDestroy, OnInit { |
|
|
|
public durationExtension: StringValue; |
|
|
|
public hasPermissionToCreateUser: boolean; |
|
|
|
public hasPermissionToUpdateUserSettings: boolean; |
|
|
|
|
|
|
|
public importAndExportTooltipBasic = translate( |
|
|
|
'DATA_IMPORT_AND_EXPORT_TOOLTIP_BASIC' |
|
|
|
); |
|
|
|
|
|
|
|
public importAndExportTooltipOSS = translate( |
|
|
|
'DATA_IMPORT_AND_EXPORT_TOOLTIP_OSS' |
|
|
|
); |
|
|
|
|
|
|
|
public importAndExportTooltipPremium = translate( |
|
|
|
'DATA_IMPORT_AND_EXPORT_TOOLTIP_PREMIUM' |
|
|
|
); |
|
|
|
|
|
|
|
public isLoggedIn: boolean; |
|
|
|
public label: string; |
|
|
|
public price: number; |
|
|
|
public priceId: string; |
|
|
|
|
|
|
|
public professionalDataProviderTooltipPremium = translate( |
|
|
|
'PROFESSIONAL_DATA_PROVIDER_TOOLTIP_PREMIUM' |
|
|
|
); |
|
|
|
|
|
|
|
public referralBrokers = [ |
|
|
|
'Alpian', |
|
|
|
'DEGIRO', |
|
|
|
'finpension', |
|
|
|
'frankly', |
|
|
|
@ -80,6 +87,7 @@ export class GfPricingPageComponent implements OnDestroy, OnInit { |
|
|
|
'VIAC', |
|
|
|
'Zak' |
|
|
|
]; |
|
|
|
|
|
|
|
public routerLinkFeatures = publicRoutes.features.routerLink; |
|
|
|
public routerLinkRegister = publicRoutes.register.routerLink; |
|
|
|
public user: User; |
|
|
|
|