aboutsummaryrefslogtreecommitdiffstats
path: root/cds-ui/client/src/app/app-routing.module.ts
diff options
context:
space:
mode:
authorDan Timoney <dtimoney@att.com>2019-01-07 17:31:01 +0000
committerGerrit Code Review <gerrit@onap.org>2019-01-07 17:31:01 +0000
commitb114208b9dfba7a42dfb009106143c7b506884a4 (patch)
treecdae12dec9761c469137c4343ad328a08fc8d1d2 /cds-ui/client/src/app/app-routing.module.ts
parent255abc6d88ec969e7fd6d03185c77e366edbf907 (diff)
parent5f6175d79c9a5780608a5805ad563669e96a8943 (diff)
Merge "App routing"
Diffstat (limited to 'cds-ui/client/src/app/app-routing.module.ts')
-rw-r--r--cds-ui/client/src/app/app-routing.module.ts30
1 files changed, 11 insertions, 19 deletions
diff --git a/cds-ui/client/src/app/app-routing.module.ts b/cds-ui/client/src/app/app-routing.module.ts
index 8a33f224a..22e488749 100644
--- a/cds-ui/client/src/app/app-routing.module.ts
+++ b/cds-ui/client/src/app/app-routing.module.ts
@@ -21,28 +21,20 @@ limitations under the License.
import { NgModule } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';
-// import { AboutComponent } from './common/shared/components/about/about.component';
-// import { PageNotFoundComponent } from './common/shared/components/page-not-found/page-not-found.component';
-// import { SelectTemplateComponent } from './feature-module/select-template/select-template.component';
-// import { HomeComponent } from './common/shared/components/home/home.component';
+import { HomeComponent } from './common/shared/components/home/home.component';
const routes: Routes = [
-// {
-// path: '',
-// component: HomeComponent,
-// children: [
-// {
-// path: '',
-// component: AboutComponent
-
-// },
-// {
-// path: 'controllerBlueprint',
-// loadChildren: './feature-module/controller-blueprint/controller-blueprint.module#ControllerBlueprintModule'
-// }
-// ]
-// }
+{
+ path: '',
+ component: HomeComponent,
+ children: [
+ {
+ path: 'blueprint',
+ loadChildren: './feature-modules/blueprint/blueprint.module#BlueprintModule'
+ }
+ ]
+}
];
@NgModule({