({ email }, options)
| 16 | }, |
| 17 | |
| 18 | getByEmail ({ email }, options) { |
| 19 | if (options == null) { options = {} } |
| 20 | return fetchJson('/db/user', _.merge({}, options, { data: { email } })) |
| 21 | }, |
| 22 | |
| 23 | signupWithPassword ({ userID, name, email, password }, options) { |
| 24 | if (options == null) { options = {} } |
nothing calls this directly
no outgoing calls
no test coverage detected