summaryrefslogtreecommitdiffstats
path: root/ecomp-sdk/epsdk-app-os/ngappsrc/src/app/pages/pages-routing.module.ts
blob: fe38e10e4da1dda382c2d401923a095bdffbc2a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import {NgModule} from '@angular/core';
import {Routes, RouterModule} from '@angular/router';
import {ReportComponent} from './analytics/Report_List/Report/report.component';
import {HeaderTabsWrapperComponent} from './analytics/Report_List/header-tabs-wrapper-component/header-tabs-wrapper.component';

import {RefreshComponent} from './refresh/refresh.component';


const routes: Routes = [
    {path: 'report-list', component: ReportComponent},
    {path: 'create', component: HeaderTabsWrapperComponent},
    {path: 'reports/:reportMode/:reportId', component: HeaderTabsWrapperComponent},
    {path: 'refresh', component: RefreshComponent},
];

@NgModule({
    imports: [RouterModule.forChild(routes)],
    exports: [RouterModule]
})
export class PagesRoutingModule {
}