From cdc8bdee63b2ae5d5058ad689e0b2c419e3cc3e3 Mon Sep 17 00:00:00 2001 From: ezhil Date: Fri, 1 Feb 2019 18:19:18 +0530 Subject: Add Blueprint and DataDictionary to App module Change-Id: Ib0540ce8a20041e46b1777ec6dc68c1a59fbb84c Issue-ID: CCSDK-703 Signed-off-by: ezhil --- cds-ui/client/src/app/app.module.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'cds-ui/client/src/app/app.module.ts') 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] -- cgit 1.2.3-korg