(userID, opts)
| 107 | } |
| 108 | |
| 109 | removeMember (userID, opts) { |
| 110 | const options = { |
| 111 | url: _.result(this, 'url') + `/members/${userID}`, |
| 112 | type: 'DELETE' |
| 113 | } |
| 114 | _.extend(options, opts) |
| 115 | return this.fetch(options) |
| 116 | } |
| 117 | |
| 118 | setStudentPassword (student, password) { |
| 119 | const classroomID = this.id |
no test coverage detected