summaryrefslogtreecommitdiffstats
path: root/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/report-run/report-run-routing.module.ts
diff options
context:
space:
mode:
Diffstat (limited to 'ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/report-run/report-run-routing.module.ts')
-rw-r--r--ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/report-run/report-run-routing.module.ts28
1 files changed, 28 insertions, 0 deletions
diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/report-run/report-run-routing.module.ts b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/report-run/report-run-routing.module.ts
new file mode 100644
index 00000000..38f4d5b3
--- /dev/null
+++ b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/report-run/report-run-routing.module.ts
@@ -0,0 +1,28 @@
+import {RouterModule, Routes} from '@angular/router';
+
+import {NgModule} from '@angular/core';
+import {ReportRunComponent} from './report-run.component';
+import {RunReportFormFieldsComponent} from './run/run-report-form-fields/run-report-form-fields.component';
+
+
+const routes: Routes = [
+ {
+ path: '',
+ component: ReportRunComponent,
+ children: [
+ {path: ':reportId', component: RunReportFormFieldsComponent},
+ {path: ':reportId/:queryParameters', component: RunReportFormFieldsComponent},
+ {path: ':reportId/:queryParameters/:groupSelectValue', component: RunReportFormFieldsComponent},
+ {path: ':reportId/:queryParameters/:groupSelectValue/:showBackButton/:downloadPrevReport', component: RunReportFormFieldsComponent},
+ {path: '', component: RunReportFormFieldsComponent},
+ ]
+ }
+];
+
+@NgModule({
+ imports: [RouterModule.forChild(routes)],
+ exports: [RouterModule]
+})
+export class ReportRunRouting{
+
+}