summaryrefslogtreecommitdiffstats
path: root/cds-ui/client/src/app/app.module.ts
diff options
context:
space:
mode:
authorezhil <ezhrajam@in.ibm.com>2019-02-01 18:19:18 +0530
committerezhil <ezhrajam@in.ibm.com>2019-02-01 18:19:34 +0530
commitcdc8bdee63b2ae5d5058ad689e0b2c419e3cc3e3 (patch)
tree1f9ca612d9fc3083da51806c08e4d18b8f3df622 /cds-ui/client/src/app/app.module.ts
parent5e0ae9df92d5dea5549839696845613d7b8978ad (diff)
Add Blueprint and DataDictionary to App module
Change-Id: Ib0540ce8a20041e46b1777ec6dc68c1a59fbb84c Issue-ID: CCSDK-703 Signed-off-by: ezhil <ezhrajam@in.ibm.com>
Diffstat (limited to 'cds-ui/client/src/app/app.module.ts')
-rw-r--r--cds-ui/client/src/app/app.module.ts7
1 files changed, 6 insertions, 1 deletions
diff --git a/cds-ui/client/src/app/app.module.ts b/cds-ui/client/src/app/app.module.ts
index 1df9d0756..cc40c35dd 100644
--- a/cds-ui/client/src/app/app.module.ts
+++ b/cds-ui/client/src/app/app.module.ts
@@ -33,6 +33,9 @@ import { AppComponent } from './app.component';
import { SharedModule } from './common/shared/shared.module';
import { CoreModule } from './common/core/core.module';
+import { BlueprintModule } from './feature-modules/blueprint/blueprint.module';
+import { ResourceDefinitionModule } from './feature-modules/resource-definition/resource-definition.module';
+
@NgModule({
declarations: [
AppComponent
@@ -61,7 +64,9 @@ import { CoreModule } from './common/core/core.module';
MatStepperModule,
HttpClientModule,
SharedModule,
- CoreModule
+ CoreModule,
+ BlueprintModule,
+ ResourceDefinitionModule
],
providers: [],
bootstrap: [AppComponent]