(recipientId, opts)
| 2 | |
| 3 | module.exports = { |
| 4 | fetchByRecipient (recipientId, opts) { |
| 5 | if (opts == null) { opts = {} } |
| 6 | if (opts.data == null) { opts.data = {} } |
| 7 | opts.data.recipient = recipientId |
| 8 | return fetchJson('/db/payment', opts) |
| 9 | } |
| 10 | } |
nothing calls this directly
no outgoing calls
no test coverage detected