({ userID, productID }, options)
| 72 | }, |
| 73 | |
| 74 | createBillingAgreement ({ userID, productID }, options) { |
| 75 | if (options == null) { options = {} } |
| 76 | return fetchJson(this.url(userID, 'paypal/create-billing-agreement'), _.assign({}, options, { |
| 77 | method: 'POST', |
| 78 | json: { productID } |
| 79 | })) |
| 80 | }, |
| 81 | |
| 82 | executeBillingAgreement ({ userID, token }, options) { |
| 83 | if (options == null) { options = {} } |
nothing calls this directly
no outgoing calls
no test coverage detected