(trialRequest, options)
| 10 | |
| 11 | module.exports = { |
| 12 | post (trialRequest, options) { |
| 13 | return fetchJson('/db/trial.request', _.assign({}, options, { |
| 14 | method: 'POST', |
| 15 | json: trialRequest |
| 16 | })) |
| 17 | }, |
| 18 | |
| 19 | getOwn (options) { |
| 20 | if (options == null) { options = {} } |
nothing calls this directly
no outgoing calls
no test coverage detected