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: 169502a957b4725f3070cd3e8c1c91c6d0cafc51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import * as actions from 'ee_else_ce/diffs/store/actions';
import * as getters from 'ee_else_ce/diffs/store/getters';
import createState from 'ee_else_ce/diffs/store/modules/diff_state';
import mutations from 'ee_else_ce/diffs/store/mutations';

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