summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/batch_comments/stores/modules/batch_comments/index.js
blob: 81a51b5ab3142065640f653ee3528794c080c121 (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 state from './state';

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