Blueprint routing module 23/78423/1
authorArundathi Patil <arundpil@in.ibm.com>
Wed, 13 Feb 2019 18:10:04 +0000 (23:40 +0530)
committerIBM602-PC0F1E3C\Arundathi <arundpil@in.ibm.com>
Wed, 13 Feb 2019 18:10:13 +0000 (23:40 +0530)
Removed the child routes as the routes is handelled by angular material
stepper by default

Issue-ID: CCSDK-1017
Change-Id: I22d5afbc6f254b2ac261b13ab5a26110d828d7fb
Signed-off-by: Arundathi Patil <arundpil@in.ibm.com>
cds-ui/client/src/app/feature-modules/blueprint/blueprint-routing.module.ts

index 26ffa12..d0ce0c6 100644 (file)
@@ -27,29 +27,7 @@ import { BlueprintComponent } from './blueprint.component';
 const routes: Routes = [
     {
         path: '',
-        component: BlueprintComponent,
-        children: [
-            {
-                path: '',
-                loadChildren: './select-template/select-template.module#SelectTemplateModule'
-            },
-            {
-                path: 'selectTemplate',
-                loadChildren: './select-template/select-template.module#SelectTemplateModule'
-            },
-            {
-                path: 'modifyTemplate',
-                loadChildren: './modify-template/modify-template.module#ModifyTemplateModule'
-            },
-            {
-                path: 'testTemplate',
-                loadChildren: './test-template/test-template.module#TestTemplateModule'
-            },
-            {
-                path: 'deployTemplate',
-                loadChildren: './deploy-template/deploy-template.module#DeployTemplateModule'
-            }
-        ]
+        component: BlueprintComponent
     }
 ];