summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/feature_flags/store/gitlab_user_list/index.js
blob: 8a38f0686097663dfacff152ce7c28f5bb8acbcb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import * as actions from './actions';
import * as getters from './getters';
import mutations from './mutations';
import state from './state';

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