(classroomID, options)
| 39 | }, |
| 40 | |
| 41 | fetchForClassroomMembers (classroomID, options) { |
| 42 | return fetchJson(`/db/classroom/${classroomID}/member-sessions`, _.merge({}, options, { |
| 43 | method: 'GET', |
| 44 | remove: false |
| 45 | })) |
| 46 | }, |
| 47 | |
| 48 | update (levelSession, options) { |
| 49 | if (options == null) { options = {} } |
nothing calls this directly
no outgoing calls
no test coverage detected