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

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