(courseInstanceID, options)
| 51 | }, |
| 52 | |
| 53 | removeMember (courseInstanceID, options) { |
| 54 | if (options == null) { options = {} } |
| 55 | return fetchJson(`/db/course_instance/${courseInstanceID}/members`, _.assign({}, options, { |
| 56 | method: 'DELETE', |
| 57 | json: { |
| 58 | userID: options.memberId |
| 59 | } |
| 60 | })) |
| 61 | }, |
| 62 | |
| 63 | update ({ courseInstanceID, updates }, options) { |
| 64 | if (options == null) { options = {} } |
nothing calls this directly
no outgoing calls
no test coverage detected