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

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