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

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

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