({ classroomID, emails, recaptchaResponseToken }, options)
| 120 | }, |
| 121 | |
| 122 | inviteMembers ({ classroomID, emails, recaptchaResponseToken }, options) { |
| 123 | if (options == null) { options = {} } |
| 124 | return fetchJson(`/db/classroom/${classroomID}/invite-members`, _.assign({}, options, { |
| 125 | method: 'POST', |
| 126 | json: { |
| 127 | emails, |
| 128 | recaptchaResponseToken |
| 129 | } |
| 130 | })) |
| 131 | }, |
| 132 | |
| 133 | removeMember ({ classroomID, userId }, options) { |
| 134 | if (options == null) { options = {} } |
nothing calls this directly
no outgoing calls
no test coverage detected