summaryrefslogtreecommitdiffstats
path: root/ecomp-sdk/epsdk-app-os/ngapp/src/app
diff options
context:
space:
mode:
authorMuni Mohan Kunchi <munmohan@att.com>2020-02-06 13:51:45 -0500
committerMuni Mohan Kunchi <munmohan@att.com>2020-02-06 13:54:22 -0500
commite3636b96e9938cb89bb90672cf70fff3ae790186 (patch)
tree89dd47a4a95150f70e83556a3280cf4cd02daf89 /ecomp-sdk/epsdk-app-os/ngapp/src/app
parent35d028274a61ce8e77a9fa409877d93d0fce05a8 (diff)
adding sdk changes
adding sdk changes Issue-ID: PORTAL-830 Signed-off-by: Muni Mohan Kunchi <munmohan@att.com> Change-Id: I0c99d3ab15fcf4c3b34d84658b64114dadbe2577
Diffstat (limited to 'ecomp-sdk/epsdk-app-os/ngapp/src/app')
-rw-r--r--ecomp-sdk/epsdk-app-os/ngapp/src/app/pages/.gitignore4
-rw-r--r--ecomp-sdk/epsdk-app-os/ngapp/src/app/pages/pages-routing.module.ts28
2 files changed, 14 insertions, 18 deletions
diff --git a/ecomp-sdk/epsdk-app-os/ngapp/src/app/pages/.gitignore b/ecomp-sdk/epsdk-app-os/ngapp/src/app/pages/.gitignore
deleted file mode 100644
index 568f2f9c..00000000
--- a/ecomp-sdk/epsdk-app-os/ngapp/src/app/pages/.gitignore
+++ /dev/null
@@ -1,4 +0,0 @@
-*
-!ext
-!ext/**
-!pages-routhing.module.ts \ No newline at end of file
diff --git a/ecomp-sdk/epsdk-app-os/ngapp/src/app/pages/pages-routing.module.ts b/ecomp-sdk/epsdk-app-os/ngapp/src/app/pages/pages-routing.module.ts
index 05c0d50f..eff5a3d0 100644
--- a/ecomp-sdk/epsdk-app-os/ngapp/src/app/pages/pages-routing.module.ts
+++ b/ecomp-sdk/epsdk-app-os/ngapp/src/app/pages/pages-routing.module.ts
@@ -5,13 +5,13 @@ import { UsageComponent } from './admin/usage/usage.component';
import { CacheAdminComponent } from './admin/cache-admin/cache-admin.component';
import { RolesComponent } from './admin/roles/roles.component';
import { MenusComponent } from './admin/menus/menus.component';
-
+import { SearchComponent } from './ext/profile/search/search.component';
+import { SelfComponent } from './ext/profile/self/self.component';
import { ReportComponent } from './analytics/Report_List/Report/report.component';
import { RunReportComponent } from './analytics/Report_List/Report/run/run-report/run-report.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 { WelcomeDashboardComponent } from './welcome-dashboard/welcome-dashboard.component';
@@ -19,17 +19,17 @@ import { RunReportFormFieldsComponent } from './analytics/Report_List/Report/run
const routes: Routes = [
{ path: 'admin/role_function_list', component: RoleFunctionsComponent },
{ path: 'admin/usage_list', component : UsageComponent},
- {path: 'admin/cache_admin', component :CacheAdminComponent},
- {path: 'admin/admin', component :RolesComponent},
- {path: 'admin/admin_menu_edit', component :MenusComponent},
-
- {path: 'report-list', component:ReportComponent},
- {path: 'create', component: HeaderTabsWrapperComponent},
- {path: 'reports/:reportMode/:reportId', component: HeaderTabsWrapperComponent},
- {path: 'run/:reportId', component: RunReportFormFieldsComponent},
- {path: 'run/:reportId/:queryParameters', component: RunReportFormFieldsComponent},
-
-
+ { path: 'admin/cache_admin', component :CacheAdminComponent},
+ { path: 'admin/admin', component :RolesComponent},
+ { path: 'admin/admin_menu_edit', component :MenusComponent},
+ { path: 'userProfile', component :SearchComponent},
+ { path: 'userProfile/self_profile', component:SelfComponent},
+ { path: 'report-list', component:ReportComponent},
+ { path: 'create', component: HeaderTabsWrapperComponent},
+ { path: 'reports/:reportMode/:reportId', component: HeaderTabsWrapperComponent},
+ { path: 'run/:reportId', component: RunReportComponent},
+ { path: 'run/:reportId/:queryParameters', component: RunReportFormFieldsComponent},
+ { path: 'welcome/welcome', component :WelcomeDashboardComponent}
];
@NgModule({