From 2a2e318e6fbb019845a608e8bf2be083d70b2ee3 Mon Sep 17 00:00:00 2001 From: Idan Amit Date: Mon, 16 Apr 2018 15:14:03 +0300 Subject: New observable notify design in pubsub Removing unnecessary notify code Change-Id: Ic5401b82f5bacba15b857094315105fe9153dead Issue-ID: SDC-1178 Signed-off-by: Idan Amit --- .../src/app/view-models/workspace/workspace-view-model.ts | 10 ---------- 1 file changed, 10 deletions(-) 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; -- cgit 1.2.3-korg