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

mutations.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: f7e84ee81a912f44eb6ed38d5f1ac598ddd50210 (plain)
1
2
3
4
5
6
7
8
9
10
import * as types from './mutation_types';

export default {
  [types.CLOSE_DRAWER](state) {
    state.open = false;
  },
  [types.OPEN_DRAWER](state) {
    state.open = true;
  },
};