({ classroomID, num }, options)
| 57 | }, |
| 58 | |
| 59 | createStudentsForCodeNinja ({ classroomID, num }, options) { |
| 60 | if (options == null) { options = {} } |
| 61 | return fetchJson(`/db/classrooms/${classroomID}/codeninja-create-students`, _.assign({}, options, { |
| 62 | method: 'POST', |
| 63 | json: { num } |
| 64 | })) |
| 65 | }, |
| 66 | |
| 67 | async fetchByOwner (ownerId, options = {}) { |
| 68 | let projectionString = '' |
nothing calls this directly
no outgoing calls
no test coverage detected