({ courseInstanceID, updates }, options)
| 61 | }, |
| 62 | |
| 63 | update ({ courseInstanceID, updates }, options) { |
| 64 | if (options == null) { options = {} } |
| 65 | return fetchJson(`/db/course_instance/${courseInstanceID}`, _.assign({}, options, { |
| 66 | method: 'PUT', |
| 67 | json: updates |
| 68 | })) |
| 69 | }, |
| 70 | } |
nothing calls this directly
no outgoing calls
no test coverage detected