({ commit })
| 58 | commit('setAnnouncementModalOpen', true) |
| 59 | }, |
| 60 | closeAnnouncementModal ({ commit }) { |
| 61 | commit('setAnnouncementModalOpen', false) |
| 62 | }, |
| 63 | startInterval ({ commit, dispatch }, fromNav) { |
| 64 | const interval = setInterval(() => { dispatch('checkAnnouncements', fromNav) }, 600000) // every 10 mins |
| 65 | commit('setAnnouncementInterval', interval) |
nothing calls this directly
no outgoing calls
no test coverage detected