summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/feature_flags/store/gitlab_user_list/index.js
blob: d25b574981fa10bfba53345a66257e75f567b0ca (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,
});