(options, other)
| 7 | }, |
| 8 | |
| 9 | getAll (options, other) { |
| 10 | if (options == null) { options = {} } |
| 11 | let url = '/db/ai_scenario' |
| 12 | if (other) { |
| 13 | url = `/${other}${url}` |
| 14 | } |
| 15 | return fetchJson(url, options) |
| 16 | }, |
| 17 | |
| 18 | async getReleased (options) { |
| 19 | if (options == null) { options = {} } |
nothing calls this directly
no outgoing calls
no test coverage detected