summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/diffs/store/modules/index.js
blob: 6860e24db6b65745655cd690e1bf0bcf2e859c54 (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 './diff_state';

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