({ courseInstanceID }, options)
| 10 | |
| 11 | module.exports = { |
| 12 | get ({ courseInstanceID }, options) { |
| 13 | if (options == null) { options = {} } |
| 14 | return fetchJson(`/db/course_instance/${courseInstanceID}`, options) |
| 15 | }, |
| 16 | |
| 17 | getProjectGallery ({ courseInstanceID }, options) { |
| 18 | if (options == null) { options = {} } |
nothing calls this directly
no outgoing calls
no test coverage detected