Welcome to mirror list, hosted at ThFree Co, Russian Federation.

actions.js « store « whats_new « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 53488413d9eb3db5eac4284176a73b43f45a45c0 (plain)
1
2
3
4
5
6
7
8
9
10
import * as types from './mutation_types';

export default {
  closeDrawer({ commit }) {
    commit(types.CLOSE_DRAWER);
  },
  openDrawer({ commit }) {
    commit(types.OPEN_DRAWER);
  },
};