({ courseID }, options)
| 2 | |
| 3 | module.exports = { |
| 4 | get ({ courseID }, options) { |
| 5 | const effectiveOptions = options || {} |
| 6 | return fetchJson(`/db/ai_scenario/${courseID}`, effectiveOptions) |
| 7 | }, |
| 8 | |
| 9 | getAll (options, other) { |
| 10 | if (options == null) { options = {} } |
nothing calls this directly
no outgoing calls
no test coverage detected