|
|
@ -1,7 +1,7 @@ |
|
|
|
import { HomeHoldingsComponent } from '@ghostfolio/client/components/home-holdings/home-holdings.component'; |
|
|
|
import { GfHomeHoldingsComponent } from '@ghostfolio/client/components/home-holdings/home-holdings.component'; |
|
|
|
import { HomeMarketComponent } from '@ghostfolio/client/components/home-market/home-market.component'; |
|
|
|
import { HomeOverviewComponent } from '@ghostfolio/client/components/home-overview/home-overview.component'; |
|
|
|
import { HomeSummaryComponent } from '@ghostfolio/client/components/home-summary/home-summary.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 { MarketsComponent } from '@ghostfolio/client/components/markets/markets.component'; |
|
|
|
import { AuthGuard } from '@ghostfolio/client/core/auth.guard'; |
|
|
@ -9,7 +9,7 @@ import { internalRoutes } from '@ghostfolio/common/routes/routes'; |
|
|
|
|
|
|
|
import { Routes } from '@angular/router'; |
|
|
|
|
|
|
|
import { HomePageComponent } from './home-page.component'; |
|
|
|
import { GfHomePageComponent } from './home-page.component'; |
|
|
|
|
|
|
|
export const routes: Routes = [ |
|
|
|
{ |
|
|
@ -17,16 +17,16 @@ export const routes: Routes = [ |
|
|
|
children: [ |
|
|
|
{ |
|
|
|
path: '', |
|
|
|
component: HomeOverviewComponent |
|
|
|
component: GfHomeOverviewComponent |
|
|
|
}, |
|
|
|
{ |
|
|
|
path: internalRoutes.home.subRoutes.holdings.path, |
|
|
|
component: HomeHoldingsComponent, |
|
|
|
component: GfHomeHoldingsComponent, |
|
|
|
title: internalRoutes.home.subRoutes.holdings.title |
|
|
|
}, |
|
|
|
{ |
|
|
|
path: internalRoutes.home.subRoutes.summary.path, |
|
|
|
component: HomeSummaryComponent, |
|
|
|
component: GfHomeSummaryComponent, |
|
|
|
title: internalRoutes.home.subRoutes.summary.title |
|
|
|
}, |
|
|
|
{ |
|
|
@ -45,7 +45,7 @@ export const routes: Routes = [ |
|
|
|
title: internalRoutes.home.subRoutes.watchlist.title |
|
|
|
} |
|
|
|
], |
|
|
|
component: HomePageComponent, |
|
|
|
component: GfHomePageComponent, |
|
|
|
path: '', |
|
|
|
title: internalRoutes.home.title |
|
|
|
} |
|
|
|