From: Idan Amit Date: Mon, 16 Apr 2018 12:14:03 +0000 (+0300) Subject: New observable notify design in pubsub X-Git-Tag: v1.2.0~138 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F25%2F43025%2F2;p=sdc.git New observable notify design in pubsub Removing unnecessary notify code Change-Id: Ic5401b82f5bacba15b857094315105fe9153dead Issue-ID: SDC-1178 Signed-off-by: Idan Amit --- diff --git a/catalog-ui/src/app/view-models/workspace/workspace-view-model.ts b/catalog-ui/src/app/view-models/workspace/workspace-view-model.ts index 7fa25177f5..3797707046 100644 --- a/catalog-ui/src/app/view-models/workspace/workspace-view-model.ts +++ b/catalog-ui/src/app/view-models/workspace/workspace-view-model.ts @@ -455,16 +455,6 @@ export class WorkspaceViewModel { version: this.$scope.component.version }; - // Notifying about events after successfully executing the actions - switch (state) { - case "checkOut": - this.eventBusService.notify("CHECK_OUT", eventData); - break; - case "deleteVersion": - this.eventBusService.notify("UNDO_CHECK_OUT", eventData); - break; - } - //the server returns only metaData (small component) except checkout (Full component) ,so we update only the statuses of distribution & lifecycle this.$scope.component.lifecycleState = component.lifecycleState; this.$scope.component.distributionStatus = component.distributionStatus;