New observable notify design in pubsub 25/43025/2
authorIdan Amit <ia096e@intl.att.com>
Mon, 16 Apr 2018 12:14:03 +0000 (15:14 +0300)
committerIdan Amit <ia096e@intl.att.com>
Mon, 23 Apr 2018 15:44:50 +0000 (18:44 +0300)
Removing unnecessary notify code

Change-Id: Ic5401b82f5bacba15b857094315105fe9153dead
Issue-ID: SDC-1178
Signed-off-by: Idan Amit <ia096e@intl.att.com>
catalog-ui/src/app/view-models/workspace/workspace-view-model.ts

index 7fa2517..3797707 100644 (file)
@@ -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;