2021-04-21 05:09:15 -04:00
|
|
|
/**
|
|
|
|
* While we are in the process implementing group level features at the project level
|
|
|
|
* we will use a simplified vuex store for the project level, eventually this can be
|
|
|
|
* replaced with the store at ee/app/assets/javascripts/analytics/cycle_analytics/store/index.js
|
|
|
|
* once we have enough of the same features implemented across the project and group level
|
|
|
|
*/
|
|
|
|
|
|
|
|
import Vue from 'vue';
|
|
|
|
import Vuex from 'vuex';
|
|
|
|
import * as actions from './actions';
|
2021-06-02 05:09:46 -04:00
|
|
|
import * as getters from './getters';
|
2021-04-21 05:09:15 -04:00
|
|
|
import mutations from './mutations';
|
|
|
|
import state from './state';
|
|
|
|
|
|
|
|
Vue.use(Vuex);
|
|
|
|
|
|
|
|
export default () =>
|
|
|
|
new Vuex.Store({
|
|
|
|
actions,
|
2021-06-02 05:09:46 -04:00
|
|
|
getters,
|
2021-04-21 05:09:15 -04:00
|
|
|
mutations,
|
|
|
|
state,
|
|
|
|
});
|