({ classroomID }, options)
| 10 | |
| 11 | module.exports = { |
| 12 | get ({ classroomID }, options) { |
| 13 | if (options == null) { options = {} } |
| 14 | return fetchJson(`/db/classroom/${classroomID}`, options) |
| 15 | }, |
| 16 | |
| 17 | // TODO: Set this up to allow using classroomID instead |
| 18 | getMembers ({ classroom }, options) { |
nothing calls this directly
no outgoing calls
no test coverage detected