({ commit }, event)
| 142 | commit('setEvent', event) |
| 143 | }, |
| 144 | async saveEvent ({ commit }, event) { |
| 145 | return await postEvent(event) |
| 146 | }, |
| 147 | async editEvent ({ commit }, event) { |
| 148 | return await updateEvent(event._id, event) |
| 149 | }, |
nothing calls this directly
no test coverage detected