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

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