({ userId })
| 201 | }, |
| 202 | |
| 203 | getRelatedAccount ({ userId }) { |
| 204 | return fetchJson(`/db/user/related-accounts/${userId}`, _.assign({}, { |
| 205 | method: 'GET' |
| 206 | })) |
| 207 | }, |
| 208 | |
| 209 | verifyRelatedAccount ({ userAskingToRelateId, body }) { |
| 210 | return fetchJson(`/db/user/related-accounts/${userAskingToRelateId}/verify`, _.assign({}, { |
nothing calls this directly
no outgoing calls
no test coverage detected