summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/feature_flags/store/modules/edit/index.js
blob: 665bb29a17e4edf9bedd0ddf4a09608660f179b3 (plain)
1
2
3
4
5
6
7
8
9
10
import state from './state';
import * as actions from './actions';
import mutations from './mutations';

export default {
  namespaced: true,
  actions,
  mutations,
  state: state(),
};