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

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

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