(levelSession, options)
| 46 | }, |
| 47 | |
| 48 | update (levelSession, options) { |
| 49 | if (options == null) { options = {} } |
| 50 | return fetchJson(`/db/level.session/${levelSession._id}`, _.assign({}, options, { |
| 51 | method: 'PUT', |
| 52 | json: levelSession |
| 53 | })) |
| 54 | }, |
| 55 | |
| 56 | fetchMySessions (levelOriginal, options) { |
| 57 | if (options == null) { options = {} } |
nothing calls this directly
no outgoing calls
no test coverage detected