({ commit }, { studentId })
| 129 | |
| 130 | actions: { |
| 131 | addStudentSelectedId ({ commit }, { studentId }) { |
| 132 | commit('setCheckedStudent', { studentId }) |
| 133 | }, |
| 134 | |
| 135 | removeStudentSelectedId ({ commit }, { studentId }) { |
| 136 | commit('removeCheckedStudent', { studentId }) |
nothing calls this directly
no outgoing calls
no test coverage detected