(state, getters)
| 138 | return state.classroomId |
| 139 | }, |
| 140 | classroom (state, getters) { |
| 141 | return getters.getActiveClassrooms.find((c) => c._id === state.classroomId) || {} |
| 142 | }, |
| 143 | getPageTitle (state) { |
| 144 | return Vue.t(`teacher_dashboard.${state.pageTitle}`) || state.pageTitle |
| 145 | }, |
nothing calls this directly
no outgoing calls
no test coverage detected