diff options
author | Idan Amit <ia096e@intl.att.com> | 2018-03-06 13:52:58 +0200 |
---|---|---|
committer | Michael Lando <ml636r@att.com> | 2018-03-07 06:56:36 +0000 |
commit | f97bae33631c3f5ef06574e9d21620c8dfff8f62 (patch) | |
tree | 5d7e2682fd7db6646b5608a417ae7af40a5ebf56 /catalog-ui/src/app/modules/service-module.ts | |
parent | 2064106f298ac9683821e83acbfd87dac8b5b32f (diff) |
Add events hub notify calls
Added events hub notify calls.
Fixed issues raised by development across the publish subscribe mechanism development
Change-Id: I0768bdcb2d89f99634cdb6bc7cb75e20263f5c00
Issue-ID: SDC-1029
Signed-off-by: Idan Amit <ia096e@intl.att.com>
Diffstat (limited to 'catalog-ui/src/app/modules/service-module.ts')
-rw-r--r-- | catalog-ui/src/app/modules/service-module.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/catalog-ui/src/app/modules/service-module.ts b/catalog-ui/src/app/modules/service-module.ts index 87a435df40..387332cae5 100644 --- a/catalog-ui/src/app/modules/service-module.ts +++ b/catalog-ui/src/app/modules/service-module.ts @@ -52,6 +52,7 @@ import {ConnectionWizardService} from "../ng2/pages/connection-wizard/connection import {ComponentInstanceServiceNg2} from "../ng2/services/component-instance-services/component-instance.service"; import {UserService as UserServiceNg2} from "../ng2/services/user.service"; import {PluginsService} from "../ng2/services/plugins.service"; +import {EventBusService} from "../ng2/services/event-bus.service"; let moduleName:string = 'Sdc.Services'; let serviceModule:ng.IModule = angular.module(moduleName, []); @@ -97,3 +98,4 @@ serviceModule.factory('ConnectionWizardServiceNg2', downgradeInjectable(Connecti serviceModule.factory('ComponentInstanceServiceNg2', downgradeInjectable(ComponentInstanceServiceNg2)); serviceModule.factory('UserServiceNg2', downgradeInjectable(UserServiceNg2)); serviceModule.factory('PluginsService', downgradeInjectable(PluginsService)); +serviceModule.factory('EventBusService', downgradeInjectable(EventBusService)); |