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

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