summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/batch_comments/stores/modules/batch_comments/index.js
blob: 81dab0566c1a8a9204d7250388946cf17a84b03a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import state from './state';
import mutations from './mutations';
import * as actions from './actions';
import * as getters from './getters';

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