diff options
author | Dan Timoney <dtimoney@att.com> | 2019-02-14 13:50:29 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-02-14 13:50:29 +0000 |
commit | b1b79bb307b32ff882bf75d6639ff94cec8ad410 (patch) | |
tree | f44d28e340b5660dbc13c6cfd19774dc3401d0eb /cds-ui/client/src/app | |
parent | b83297b628938b84935851fd1c3a5f405aa7a6ea (diff) | |
parent | 0c6ff4fc46a023ffd89c69cc31bd05601a7baaf0 (diff) |
Merge "Blueprint routing module"
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 } ]; |