({ userAskingToRelateId, body })
| 207 | }, |
| 208 | |
| 209 | verifyRelatedAccount ({ userAskingToRelateId, body }) { |
| 210 | return fetchJson(`/db/user/related-accounts/${userAskingToRelateId}/verify`, _.assign({}, { |
| 211 | method: 'PUT', |
| 212 | json: body |
| 213 | })) |
| 214 | }, |
| 215 | |
| 216 | sendVerifyEmail (body) { |
| 217 | return fetchJson('/db/user/related-accounts/confirm-email', _.assign({}, { |
nothing calls this directly
no outgoing calls
no test coverage detected