(courseInstanceDetails, options)
| 43 | |
| 44 | // courseInstanceDetails = {classroomID: '', courseID: ''} |
| 45 | post (courseInstanceDetails, options) { |
| 46 | if (options == null) { options = {} } |
| 47 | return fetchJson('/db/course_instance', _.assign({}, options, { |
| 48 | method: 'POST', |
| 49 | json: courseInstanceDetails |
| 50 | })) |
| 51 | }, |
| 52 | |
| 53 | removeMember (courseInstanceID, options) { |
| 54 | if (options == null) { options = {} } |
nothing calls this directly
no outgoing calls
no test coverage detected