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