debian-mirror-gitlab/app/assets/javascripts/diffs/store/modules/index.js

13 lines
333 B
JavaScript
Raw Normal View History

2021-04-29 21:17:54 +05:30
import * as actions from 'ee_else_ce/diffs/store/actions';
import createState from 'ee_else_ce/diffs/store/modules/diff_state';
import mutations from 'ee_else_ce/diffs/store/mutations';
2018-11-08 19:23:39 +05:30
import * as getters from '../getters';
2018-12-05 23:21:45 +05:30
export default () => ({
2018-11-08 19:23:39 +05:30
namespaced: true,
state: createState(),
getters,
actions,
mutations,
2018-12-05 23:21:45 +05:30
});