(options)
| 10 | |
| 11 | module.exports = { |
| 12 | getAll (options) { |
| 13 | if (options == null) { options = {} } |
| 14 | return fetchJson('/db/campaign', options) |
| 15 | }, |
| 16 | get ({ campaignHandle }, options) { |
| 17 | if (options == null) { options = {} } |
| 18 | return fetchJson(`/db/campaign/${campaignHandle}`, options) |
nothing calls this directly
no outgoing calls
no test coverage detected