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