(handle, options)
| 12 | url (userID, path) { if (path) { return `/db/user/${userID}/${path}` } else { return `/db/user/${userID}` } }, |
| 13 | |
| 14 | getByHandle (handle, options) { |
| 15 | return fetchJson(`/db/user/${handle}`, options) |
| 16 | }, |
| 17 | |
| 18 | getByEmail ({ email }, options) { |
| 19 | if (options == null) { options = {} } |
nothing calls this directly
no outgoing calls
no test coverage detected