aboutsummaryrefslogtreecommitdiffstats
path: root/cds-ui/client/src/app/feature-modules/blueprint/blueprint-routing.module.ts
diff options
context:
space:
mode:
authorArundathi Patil <arundpil@in.ibm.com>2019-01-07 22:35:27 +0530
committerIBM602-PC0F1E3C\Arundathi <arundpil@in.ibm.com>2019-01-07 22:49:31 +0530
commit6c32c195884f1d07085c6949eaf2d186203b4f19 (patch)
tree6bfb8c93dd753ad7806d56045558fa06fe0d1fa7 /cds-ui/client/src/app/feature-modules/blueprint/blueprint-routing.module.ts
parent445ff21677f9ef8239d468cf82a73bb7ed1caf32 (diff)
Blueprint routing
Added routes to blueprint module Issue-ID: CCSDK-816 Change-Id: I67b7fb21e85b04a77c3c0a8a6878420f8fd0855d Signed-off-by: Arundathi Patil <arundpil@in.ibm.com>
Diffstat (limited to 'cds-ui/client/src/app/feature-modules/blueprint/blueprint-routing.module.ts')
-rw-r--r--cds-ui/client/src/app/feature-modules/blueprint/blueprint-routing.module.ts24
1 files changed, 23 insertions, 1 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 d0ce0c68d..26ffa1236 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,7 +27,29 @@ import { BlueprintComponent } from './blueprint.component';
const routes: Routes = [
{
path: '',
- component: BlueprintComponent
+ 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'
+ }
+ ]
}
];