summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/releases/stores/modules/edit_new/index.js
blob: e1b7e69accc42aff36096e9b179e9ba77d5acd9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import * as actions from './actions';
import * as getters from './getters';
import mutations from './mutations';
import createState from './state';

export default (initialState) => ({
  namespaced: true,
  actions,
  getters,
  mutations,
  state: createState(initialState),
});