(campaignHandle, 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) |
| 23 | }, |
| 24 | fetchOverworld (options) { |
| 25 | if (options == null) { options = {} } |
| 26 | return fetchJson('/db/campaign/-/overworld', options) |
nothing calls this directly
no outgoing calls
no test coverage detected