({ sessionID, key, value }, options)
| 31 | }, |
| 32 | |
| 33 | incrementKeyValue ({ sessionID, key, value }, options) { |
| 34 | if (value == null) { value = 1 } |
| 35 | return fetchJson(`/db/level.session/${sessionID}/key-value-db/${key}/increment`, _.merge({}, options, { |
| 36 | method: 'POST', |
| 37 | json: value |
| 38 | })) |
| 39 | }, |
| 40 | |
| 41 | fetchForClassroomMembers (classroomID, options) { |
| 42 | return fetchJson(`/db/classroom/${classroomID}/member-sessions`, _.merge({}, options, { |
nothing calls this directly
no outgoing calls
no test coverage detected