Skip to content

Commit 6b26891

Browse files
mattermost-buildlarkoxenahum
authored
Address plugin changes around incremental websocket (#9011) (#9024)
* Address plugin changes around incremental websocket * ensure change_fields is set and is an object before processing --------- (cherry picked from commit 2be07ec) Co-authored-by: Daniel Espino García <[email protected]> Co-authored-by: Elias Nahum <[email protected]>
1 parent 6de2471 commit 6b26891

File tree

5 files changed

+192
-376
lines changed

5 files changed

+192
-376
lines changed

app/products/playbooks/actions/websocket/events.ts

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ import {WebsocketEvents} from '@constants';
55
import {WEBSOCKET_EVENTS} from '@playbooks/constants/websocket';
66

77
import {
8-
handlePlaybookChecklistItemUpdated,
9-
handlePlaybookChecklistUpdated,
108
handlePlaybookRunCreated,
119
handlePlaybookRunUpdated,
1210
handlePlaybookRunUpdatedIncremental,
@@ -30,12 +28,6 @@ export async function handlePlaybookEvents(serverUrl: string, msg: WebSocketMess
3028
case WEBSOCKET_EVENTS.WEBSOCKET_PLAYBOOK_RUN_UPDATED_INCREMENTAL:
3129
handlePlaybookRunUpdatedIncremental(serverUrl, msg);
3230
break;
33-
case WEBSOCKET_EVENTS.WEBSOCKET_PLAYBOOK_CHECKLIST_UPDATED:
34-
handlePlaybookChecklistUpdated(serverUrl, msg);
35-
break;
36-
case WEBSOCKET_EVENTS.WEBSOCKET_PLAYBOOK_CHECKLIST_ITEM_UPDATED:
37-
handlePlaybookChecklistItemUpdated(serverUrl, msg);
38-
break;
3931
default:
4032
break;
4133
}

0 commit comments

Comments
 (0)