summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/ide/stores/modules/commit/index.js
blob: 3bf65b0284700902952fe0c9813f342db7840447 (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,
};