aboutsummaryrefslogtreecommitdiffstats
path: root/cds-ui/client/src/app/feature-modules/blueprint/deploy-template/deploy-template.module.ts
diff options
context:
space:
mode:
authorArundathi Patil <arundpil@in.ibm.com>2019-02-26 16:01:13 +0530
committerIBM602-PC0F1E3C\Arundathi <arundpil@in.ibm.com>2019-02-26 16:01:21 +0530
commit39ba35a576b26c28ed01391f8361a82150ead4bd (patch)
tree727bfceed45c95402599ff6a7fb90b2e65e28226 /cds-ui/client/src/app/feature-modules/blueprint/deploy-template/deploy-template.module.ts
parenta9a51128e6197fbb4efb38b5cd73e247d7c1fa45 (diff)
Deploy component
Created UI for buleprint deploy and save Issue-ID: CCSDK-1102 Change-Id: I1c3874361cffc5e446f187d7ea4e4622c94948c8 Signed-off-by: Arundathi Patil <arundpil@in.ibm.com>
Diffstat (limited to 'cds-ui/client/src/app/feature-modules/blueprint/deploy-template/deploy-template.module.ts')
-rw-r--r--cds-ui/client/src/app/feature-modules/blueprint/deploy-template/deploy-template.module.ts4
1 files changed, 3 insertions, 1 deletions
diff --git a/cds-ui/client/src/app/feature-modules/blueprint/deploy-template/deploy-template.module.ts b/cds-ui/client/src/app/feature-modules/blueprint/deploy-template/deploy-template.module.ts
index e39beacb2..5d5a6000e 100644
--- a/cds-ui/client/src/app/feature-modules/blueprint/deploy-template/deploy-template.module.ts
+++ b/cds-ui/client/src/app/feature-modules/blueprint/deploy-template/deploy-template.module.ts
@@ -22,6 +22,7 @@ import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { DeployTemplateComponent } from './deploy-template.component';
import { DeployTemplateRoutingModule } from './deploy-template-routing.module';
+import { AppMaterialModule } from '../../../common/modules/app-material.module';
@NgModule({
declarations: [
@@ -32,7 +33,8 @@ import { DeployTemplateRoutingModule } from './deploy-template-routing.module';
],
imports: [
CommonModule,
- DeployTemplateRoutingModule
+ DeployTemplateRoutingModule,
+ AppMaterialModule
]
})
export class DeployTemplateModule { }