({ campaignHandle }, options)
| 14 | return fetchJson('/db/campaign', options) |
| 15 | }, |
| 16 | get ({ campaignHandle }, options) { |
| 17 | if (options == null) { options = {} } |
| 18 | return fetchJson(`/db/campaign/${campaignHandle}`, options) |
| 19 | }, |
| 20 | fetchGameContent (campaignHandle, options) { |
| 21 | if (options == null) { options = {} } |
| 22 | return fetchJson(`/db/campaign/${campaignHandle}/game-content`, options) |
nothing calls this directly
no outgoing calls
no test coverage detected