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

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

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