(user, options)
| 64 | }, |
| 65 | |
| 66 | put (user, options) { |
| 67 | if (options == null) { options = {} } |
| 68 | return fetchJson(this.url(user._id), _.assign({}, options, { |
| 69 | method: 'PUT', |
| 70 | json: user |
| 71 | })) |
| 72 | }, |
| 73 | |
| 74 | createBillingAgreement ({ userID, productID }, options) { |
| 75 | if (options == null) { options = {} } |
nothing calls this directly
no outgoing calls
no test coverage detected