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

index.js « router « 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: 68c81bb45096f154036c07678c400afaec9bb260 (plain)
1
2
3
4
5
6
7
8
9
10
import state from './state';
import mutations from './mutations';
import * as actions from './actions';

export default {
  namespaced: true,
  state,
  mutations,
  actions,
};