(path: string, name: string)
| 281 | this.superstate.reloadActions(this.spaceInfoForPath(path))); |
| 282 | } |
| 283 | public deleteCommand (path: string, name: string) { |
| 284 | return this.adapterForPath(path).deleteCommand(path, name).then(f => |
| 285 | this.superstate.reloadActions(this.spaceInfoForPath(path))); |
| 286 | } |
| 287 | public saveCommand (path: string, schemaId: string, saveCommand: (prev: Command) => Command) { |
| 288 | return this.adapterForPath(path).saveCommand(path, schemaId, saveCommand).then(f => |
| 289 | this.superstate.reloadActions(this.spaceInfoForPath(path))); |
nothing calls this directly
no test coverage detected