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

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