({ userID, billingAgreementID }, options)
| 88 | }, |
| 89 | |
| 90 | cancelBillingAgreement ({ userID, billingAgreementID }, options) { |
| 91 | if (options == null) { options = {} } |
| 92 | return fetchJson(this.url(userID, 'paypal/cancel-billing-agreement'), _.assign({}, options, { |
| 93 | method: 'POST', |
| 94 | json: { billingAgreementID } |
| 95 | })) |
| 96 | }, |
| 97 | |
| 98 | getCourseInstances ({ userID, campaignSlug }, options) { |
| 99 | if (options == null) { options = {} } |
nothing calls this directly
no outgoing calls
no test coverage detected