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

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

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