({ session, courseInstanceId }, options)
| 10 | |
| 11 | module.exports = { |
| 12 | submitToRank ({ session, courseInstanceId }, options) { |
| 13 | return fetchJson('/queue/scoring', _.merge({}, options, { |
| 14 | method: 'POST', |
| 15 | json: { session, courseInstanceId } |
| 16 | })) |
| 17 | }, |
| 18 | |
| 19 | getByStudentsAndLevels ({ earliestCreated, studentIds, levelOriginals, project }, options) { |
| 20 | return fetchJson('/db/level.session/-/levels-and-students', _.merge({}, options, { |
nothing calls this directly
no outgoing calls
no test coverage detected