Browse Source
Task/prefix home watchlist component with Gf (#5640)
* Prefix home watchlist component with Gf
pull/5651/head
SK Akram
3 weeks ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
3 additions and
3 deletions
-
apps/client/src/app/components/home-watchlist/home-watchlist.component.ts
-
apps/client/src/app/pages/home/home-page.routes.ts
|
|
@ -45,7 +45,7 @@ import { CreateWatchlistItemDialogParams } from './create-watchlist-item-dialog/ |
|
|
|
styleUrls: ['./home-watchlist.scss'], |
|
|
|
templateUrl: './home-watchlist.html' |
|
|
|
}) |
|
|
|
export class HomeWatchlistComponent implements OnDestroy, OnInit { |
|
|
|
export class GfHomeWatchlistComponent implements OnDestroy, OnInit { |
|
|
|
public deviceType: string; |
|
|
|
public hasImpersonationId: boolean; |
|
|
|
public hasPermissionToCreateWatchlistItem: boolean; |
|
|
|
|
|
@ -2,7 +2,7 @@ import { GfHomeHoldingsComponent } from '@ghostfolio/client/components/home-hold |
|
|
|
import { HomeMarketComponent } from '@ghostfolio/client/components/home-market/home-market.component'; |
|
|
|
import { GfHomeOverviewComponent } from '@ghostfolio/client/components/home-overview/home-overview.component'; |
|
|
|
import { GfHomeSummaryComponent } from '@ghostfolio/client/components/home-summary/home-summary.component'; |
|
|
|
import { HomeWatchlistComponent } from '@ghostfolio/client/components/home-watchlist/home-watchlist.component'; |
|
|
|
import { GfHomeWatchlistComponent } from '@ghostfolio/client/components/home-watchlist/home-watchlist.component'; |
|
|
|
import { MarketsComponent } from '@ghostfolio/client/components/markets/markets.component'; |
|
|
|
import { AuthGuard } from '@ghostfolio/client/core/auth.guard'; |
|
|
|
import { internalRoutes } from '@ghostfolio/common/routes/routes'; |
|
|
@ -41,7 +41,7 @@ export const routes: Routes = [ |
|
|
|
}, |
|
|
|
{ |
|
|
|
path: internalRoutes.home.subRoutes.watchlist.path, |
|
|
|
component: HomeWatchlistComponent, |
|
|
|
component: GfHomeWatchlistComponent, |
|
|
|
title: internalRoutes.home.subRoutes.watchlist.title |
|
|
|
} |
|
|
|
], |
|
|
|