({ classroomID, userId }, options)
| 131 | }, |
| 132 | |
| 133 | removeMember ({ classroomID, userId }, options) { |
| 134 | if (options == null) { options = {} } |
| 135 | return fetchJson(`/db/classroom/${classroomID}/members/${userId}`, _.assign({}, options, { |
| 136 | method: 'DELETE' |
| 137 | })) |
| 138 | }, |
| 139 | |
| 140 | // updates = { archived: '', name: ''} |
| 141 | update ({ classroomID, updates }, options) { |
nothing calls this directly
no outgoing calls
no test coverage detected