summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/ide/stores/modules/pipelines/index.js
blob: b44c3141b810ff9578463d82053d5ebccab6b716 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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,
};