(userID, path)
| 10 | |
| 11 | module.exports = { |
| 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) |
nothing calls this directly
no outgoing calls
no test coverage detected