(emails, recaptchaResponseToken, options)
| 397 | } |
| 398 | |
| 399 | inviteMembers (emails, recaptchaResponseToken, options) { |
| 400 | if (options == null) { options = {} } |
| 401 | if (options.data == null) { options.data = {} } |
| 402 | options.data.emails = emails |
| 403 | options.data.recaptchaResponseToken = recaptchaResponseToken |
| 404 | options.url = this.url() + '/invite-members' |
| 405 | options.type = 'POST' |
| 406 | return this.fetch(options) |
| 407 | } |
| 408 | |
| 409 | getSortedCourses () { |
| 410 | let left |
no test coverage detected