({ commit }, eventId)
| 137 | } |
| 138 | }, |
| 139 | async fetchEvent ({ commit }, eventId) { |
| 140 | const event = await getEvent(eventId) |
| 141 | event.instances = await getInstances(eventId) |
| 142 | commit('setEvent', event) |
| 143 | }, |
| 144 | async saveEvent ({ commit }, event) { |
| 145 | return await postEvent(event) |
| 146 | }, |
nothing calls this directly
no test coverage detected