diff options
author | Arundathi Patil <arundpil@in.ibm.com> | 2019-02-13 23:40:04 +0530 |
---|---|---|
committer | IBM602-PC0F1E3C\Arundathi <arundpil@in.ibm.com> | 2019-02-13 23:40:13 +0530 |
commit | 0c6ff4fc46a023ffd89c69cc31bd05601a7baaf0 (patch) | |
tree | 07d88a7d75d052ef995ea782f9c2bb13e7954ba3 /cds-ui/client/src/app | |
parent | 6c9efd47bfae32b811761e3c2f2ceba545411bb7 (diff) |
Blueprint routing module
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>
Diffstat (limited to 'cds-ui/client/src/app')
-rw-r--r-- | cds-ui/client/src/app/feature-modules/blueprint/blueprint-routing.module.ts | 24 |
1 files changed, 1 insertions, 23 deletions
diff --git a/cds-ui/client/src/app/feature-modules/blueprint/blueprint-routing.module.ts b/cds-ui/client/src/app/feature-modules/blueprint/blueprint-routing.module.ts index 26ffa1236..d0ce0c68d 100644 --- a/cds-ui/client/src/app/feature-modules/blueprint/blueprint-routing.module.ts +++ b/cds-ui/client/src/app/feature-modules/blueprint/blueprint-routing.module.ts @@ -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 } ]; |