MCPcopy Create free account
hub / github.com/bugy/script-server / _removeExecutor

Function _removeExecutor

web-src/src/main-app/store/scriptExecutionManager.js:223–230  ·  view source on GitHub ↗
({dispatch, state, commit}, executor)

Source from the content-addressed store, hash-verified

221 },
222
223 _removeExecutor({dispatch, state, commit}, executor) {
224 if (!(executor.state.id in state.executors)) {
225 return;
226 }
227
228 this.unregisterModule(['executions', executor.state.id]);
229 commit('REMOVE_EXECUTOR', executor)
230 }
231 }
232}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected