({ classroomID, members }, options)
| 49 | }, |
| 50 | |
| 51 | addMembers ({ classroomID, members }, options) { |
| 52 | if (options == null) { options = {} } |
| 53 | return fetchJson(`/db/classroom/${classroomID}/add-members`, _.assign({}, options, { |
| 54 | method: 'POST', |
| 55 | json: { members } |
| 56 | })) |
| 57 | }, |
| 58 | |
| 59 | createStudentsForCodeNinja ({ classroomID, num }, options) { |
| 60 | if (options == null) { options = {} } |
nothing calls this directly
no outgoing calls
no test coverage detected