(json, options)
| 193 | }, |
| 194 | |
| 195 | putUserProducts (json, options) { |
| 196 | if (options == null) { options = {} } |
| 197 | return fetchJson('/db/user/products', _.assign({}, options, { |
| 198 | method: 'PUT', |
| 199 | json |
| 200 | })) |
| 201 | }, |
| 202 | |
| 203 | getRelatedAccount ({ userId }) { |
| 204 | return fetchJson(`/db/user/related-accounts/${userId}`, _.assign({}, { |
nothing calls this directly
no outgoing calls
no test coverage detected