async fetch({ commit, getters }, { boardId }) {
      commit('START_LOADING');
      const items = await api.fetchNotifications(getters.token, { boardId });
      commit('FINISH_LOADING', items || []);
      return items;