debian-mirror-gitlab/app/assets/javascripts/whats_new/store/mutations.js

14 lines
254 B
JavaScript
Raw Normal View History

2020-10-24 23:57:45 +05:30
import * as types from './mutation_types';
export default {
[types.CLOSE_DRAWER](state) {
state.open = false;
},
[types.OPEN_DRAWER](state) {
state.open = true;
},
2021-01-03 14:25:43 +05:30
[types.SET_FEATURES](state, data) {
state.features = data;
},
2020-10-24 23:57:45 +05:30
};