({ userID, email, ...attrs })
| 48 | }, |
| 49 | |
| 50 | signupWithOAuth2 ({ userID, email, ...attrs }) { |
| 51 | return fetchJson(this.url(userID, 'signup-with-oauth2'), _.assign({}, { |
| 52 | method: 'POST', |
| 53 | credentials: 'include', |
| 54 | json: { email, ...attrs }, |
| 55 | })) |
| 56 | }, |
| 57 | |
| 58 | signupFromGoogleClassroom (attrs, options) { |
| 59 | if (options == null) { options = {} } |
nothing calls this directly
no outgoing calls
no test coverage detected