(path: string, name: string, instance: ActionInstance)
| 274 | return this.adapterForPath(path).commandsForSpace(path); |
| 275 | } |
| 276 | public runCommand (path: string, name: string, instance: ActionInstance) { |
| 277 | return this.adapterForPath(path).runCommand(path, name, instance); |
| 278 | } |
| 279 | public createCommand (path: string, schema: SpaceTableSchema) { |
| 280 | return this.adapterForPath(path).createCommand(path, schema).then(f => |
| 281 | this.superstate.reloadActions(this.spaceInfoForPath(path))); |
nothing calls this directly
no test coverage detected