(state, exam)
| 9 | }, |
| 10 | mutations: { |
| 11 | addExam (state, exam) { |
| 12 | state.examsById[exam._id] = exam |
| 13 | }, |
| 14 | updateUserExam (state, { examId, userExam }) { |
| 15 | // for easy tracking userExam updates, |
| 16 | // we only store the latest user exam |
nothing calls this directly
no outgoing calls
no test coverage detected