(level, options)
| 47 | }, |
| 48 | |
| 49 | save (level, options) { |
| 50 | if (options == null) { options = {} } |
| 51 | return fetchJson(`/db/level/${level._id}`, _.assign({}, options, { |
| 52 | method: 'POST', |
| 53 | json: level |
| 54 | })) |
| 55 | }, |
| 56 | |
| 57 | upsertSession (levelId, options) { |
| 58 | if (options == null) { options = {} } |
nothing calls this directly
no outgoing calls
no test coverage detected