(state)
| 224 | |
| 225 | getters: { |
| 226 | classroomById(state) { |
| 227 | return (id) => { |
| 228 | return state.classrooms.byClassroom[id] |
| 229 | } |
| 230 | }, |
| 231 | getClassroomsByTeacher: (state) => (id) => { |
| 232 | return state.classrooms.byTeacher[id] |
| 233 | }, |
nothing calls this directly
no outgoing calls
no test coverage detected