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

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

export default {
  [types.SET_OVERRIDE](state, override) {
    state.override = override;
  },
  [types.SET_IS_SAVING](state, isSaving) {
    state.isSaving = isSaving;
  },
  [types.SET_IS_TESTING](state, isTesting) {
    state.isTesting = isTesting;
  },
};