(state, getters, _rootState)
| 106 | }, |
| 107 | |
| 108 | getCourseUnitMapUrl (state, getters, _rootState) { |
| 109 | if (!getters.getCurrentCourse) { |
| 110 | return |
| 111 | } |
| 112 | |
| 113 | return urls.courseWorldMap({ |
| 114 | courseId: getters.getCurrentCourse._id, |
| 115 | campaignId: getters.selectedChapterId, |
| 116 | codeLanguage: state.selectedLanguage |
| 117 | }) |
| 118 | }, |
| 119 | |
| 120 | getContentDescription () { |
| 121 | return (content) => { |
nothing calls this directly
no outgoing calls
no test coverage detected