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
576 B

import { AuthGuard } from '@ghostfolio/client/core/auth.guard';
import { Routes } from '@angular/router';
export const routes: Routes = [
{
canActivate: [AuthGuard],
loadComponent: () =>
import('./k1-import-page.component').then(
(c) => c.K1ImportPageComponent
),
path: '',
title: 'K-1 Import'
},
{
canActivate: [AuthGuard],
loadComponent: () =>
import('./k1-verification/k1-verification.component').then(
(c) => c.K1VerificationComponent
),
path: ':id/verify',
title: 'Verify K-1 Import'
}
];