ghostfolio/apps/client/src/app/pages/portfolio/allocations/allocations-page-routing.module.ts

16 lines
474 B
TypeScript
Raw Normal View History

2021-04-13 21:53:58 +02:00
import { NgModule } from '@angular/core';
import { RouterModule, Routes } from '@angular/router';
import { AuthGuard } from '@ghostfolio/client/core/auth.guard';
2021-04-13 21:53:58 +02:00
import { AllocationsPageComponent } from './allocations-page.component';
2021-04-13 21:53:58 +02:00
const routes: Routes = [
{ path: '', component: AllocationsPageComponent, canActivate: [AuthGuard] }
2021-04-13 21:53:58 +02:00
];
@NgModule({
imports: [RouterModule.forChild(routes)],
exports: [RouterModule]
})
export class AllocationsPageRoutingModule {}