summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/diffs/store/modules/index.js
blob: 169502a957b4725f3070cd3e8c1c91c6d0cafc51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import * as actions from 'ee_else_ce/diffs/store/actions';
import * as getters from 'ee_else_ce/diffs/store/getters';
import createState from 'ee_else_ce/diffs/store/modules/diff_state';
import mutations from 'ee_else_ce/diffs/store/mutations';

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