debian-mirror-gitlab/app/assets/javascripts/ide/stores/modules/pipelines/index.js

13 lines
236 B
JavaScript
Raw Normal View History

2018-11-08 19:23:39 +05:30
import state from './state';
import * as actions from './actions';
import mutations from './mutations';
import * as getters from './getters';
export default {
namespaced: true,
state: state(),
actions,
mutations,
getters,
};