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

index.js « modules « store « diffs « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6860e24db6b65745655cd690e1bf0bcf2e859c54 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import * as actions from '../actions';
import * as getters from '../getters';
import mutations from '../mutations';
import createState from './diff_state';

export default () => ({
  namespaced: true,
  state: createState(),
  getters,
  actions,
  mutations,
});