(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) |
| 27 | }, |
| 28 | fetchLevels (campaignHandle, options) { |
| 29 | if (options == null) { options = {} } |
| 30 | return fetchJson(`/db/campaign/${campaignHandle}/levels`, options) |
nothing calls this directly
no outgoing calls
no test coverage detected