({ userID, token }, options)
| 80 | }, |
| 81 | |
| 82 | executeBillingAgreement ({ userID, token }, options) { |
| 83 | if (options == null) { options = {} } |
| 84 | return fetchJson(this.url(userID, 'paypal/execute-billing-agreement'), _.assign({}, options, { |
| 85 | method: 'POST', |
| 86 | json: { token } |
| 87 | })) |
| 88 | }, |
| 89 | |
| 90 | cancelBillingAgreement ({ userID, billingAgreementID }, options) { |
| 91 | if (options == null) { options = {} } |
nothing calls this directly
no outgoing calls
no test coverage detected