You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

24 lines
598 B

import { AuthGuard } from '@ghostfolio/client/core/auth.guard';
import { publicRoutes } from '@ghostfolio/common/routes/routes';
import { Routes } from '@angular/router';
import { GfMarketsPageComponent } from './markets-page.component';
export const routes: Routes = [
{
canActivate: [AuthGuard],
children: [
{
path: '',
loadComponent: () =>
import('./markets-page.component').then(
(m) => m.GfMarketsPageComponent
)
}
],
component: GfMarketsPageComponent,
path: '',
title: publicRoutes.markets.title
}
];