summaryrefslogtreecommitdiffstats
path: root/portal-FE-os/src/app
diff options
context:
space:
mode:
authorjegadeeshbabu3 <jegadeesh.babu@att.com>2020-08-11 01:49:30 +0530
committerJegadeesh Babu <jegadeesh.babu@att.com>2020-08-10 20:35:54 +0000
commit560c13ca93cafcc163c5c139bc1324212c2dd54f (patch)
tree58253a0fe0d309ee92962429de9fe6629108f291 /portal-FE-os/src/app
parent6c663f87de1fc993f6dde5a8051ead094b5537bd (diff)
Raptor reporting capability integrated
Raptor capability integrated Issue-ID: PORTAL-980 Change-Id: Ibf83612374515109172cac8e397dd15d004ca8a6 Signed-off-by: jegadeeshbabu3 <jegadeesh.babu@att.com>
Diffstat (limited to 'portal-FE-os/src/app')
-rw-r--r--portal-FE-os/src/app/pages/pages-routing.module.ts11
1 files changed, 11 insertions, 0 deletions
diff --git a/portal-FE-os/src/app/pages/pages-routing.module.ts b/portal-FE-os/src/app/pages/pages-routing.module.ts
index d39db03c..ea1d8b5b 100644
--- a/portal-FE-os/src/app/pages/pages-routing.module.ts
+++ b/portal-FE-os/src/app/pages/pages-routing.module.ts
@@ -56,6 +56,10 @@ import { ContactUsComponent } from './contact-us/contact-us.component';
import { RoleFunctionsComponent } from './role/role-functions/role-functions.component';
import { NotificationHistoryComponent } from './notification-history/notification-history.component';
import { GetAccessComponent } from './get-access/get-access.component';
+import { HeaderTabsWrapperComponent } from './analytics/Report_List/header-tabs-wrapper-component/header-tabs-wrapper.component';
+import { RunReportFormFieldsComponent } from './analytics/Report_List/Report/run/run-report-form-fields/run-report-form-fields.component';
+import { DisplayAreaComponent } from './analytics/Report_List/display-area/display-area.component';
+import { ReportComponent } from './analytics/Report_List/Report/report.component';
const routes: Routes = [
{ path: '', component: DashboardComponent },
@@ -77,6 +81,13 @@ const routes: Routes = [
{ path: 'contactUs', component: ContactUsComponent },
{ path: 'getAccess', component: GetAccessComponent },
{ path: 'recentNotifications', component: NotificationHistoryComponent },
+ { path: 'report-list', component:ReportComponent},
+ { path: 'create', component: HeaderTabsWrapperComponent},
+ { path: 'v2/app/reports/:reportMode/:reportId', component: HeaderTabsWrapperComponent},
+ { path: 'v2/app/run/:reportId', component: RunReportFormFieldsComponent},
+ { path: 'v2/app/run/:reportId/:queryParameters', component: RunReportFormFieldsComponent},
+ { path: 'run', component: RunReportFormFieldsComponent},
+ { path: 'displayArea/:menuId', component: DisplayAreaComponent}
];
@NgModule({