summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/diffs/store/modules/index.js
blob: 90505f83b60b7ea2f307d5487a673fd1eb0326fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import 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,
};