({ commit, state }, options)
| 54 | }, |
| 55 | |
| 56 | fetchReleased ({ commit, state }, options) { |
| 57 | if (options == null) { options = {} } |
| 58 | if (state.loaded) { return Promise.resolve() } |
| 59 | return api.courses.getReleased(options).then(courses => commit('addCourses', courses)) |
| 60 | } |
| 61 | } |
| 62 | } |
nothing calls this directly
no outgoing calls
no test coverage detected