({ state })
| 91 | } |
| 92 | }, |
| 93 | async joinClass ({ state }) { |
| 94 | if (state.classCode && state.classroom) { |
| 95 | const classroom = new Classroom(state.classroom) |
| 96 | await new Promise(classroom.joinWithCode(state.classCode).then) |
| 97 | } |
| 98 | }, |
| 99 | async setHocOptions ({ state, commit, dispatch }) { |
| 100 | const saveOptions = {} |
| 101 | if (state.isHourOfCode) { |
nothing calls this directly
no test coverage detected