({ prepaidId }, options)
| 140 | }, |
| 141 | |
| 142 | fetchCreatorOfPrepaid ({ prepaidId }, options) { |
| 143 | if (options == null) { options = {} } |
| 144 | return fetchJson(`/db/prepaid/${prepaidId}/creator`, _.assign({}, options, { |
| 145 | method: 'GET' |
| 146 | })) |
| 147 | }, |
| 148 | |
| 149 | extraProvisions ({ userId }) { |
| 150 | return fetchJson(`/db/user/${userId}/extra-provisions`, _.assign({}, { |
nothing calls this directly
no outgoing calls
no test coverage detected