summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/mr_notes/stores/modules/index.js
blob: 75b2b2f4dc69a3cf29bf7a769d16f2bd4e9d3fbc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import * as actions from '../actions';
import getters from '../getters';
import mutations from '../mutations';

export default () => ({
  state: {
    endpoints: {},
    activeTab: null,
    mrMetadata: {},
    failedToLoadMetadata: false,
  },
  actions,
  getters,
  mutations,
});