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

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