Welcome to mirror list, hosted at ThFree Co, Russian Federation.

index.js « modules « stores « mr_notes « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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,
});