34 lines
526 B
JavaScript
Executable file
34 lines
526 B
JavaScript
Executable file
import { getters } from './getters';
|
|
import { actions } from './actions';
|
|
import { mutations } from './mutations';
|
|
|
|
export const defaultHelpCenterFlags = {
|
|
isFetching: false,
|
|
isUpdating: false,
|
|
isDeleting: false,
|
|
};
|
|
const state = {
|
|
meta: {
|
|
count: 0,
|
|
currentPage: 1,
|
|
},
|
|
articles: {
|
|
byId: {},
|
|
allIds: [],
|
|
uiFlags: {
|
|
byId: {},
|
|
},
|
|
},
|
|
uiFlags: {
|
|
allFetched: false,
|
|
isFetching: false,
|
|
},
|
|
};
|
|
|
|
export default {
|
|
namespaced: true,
|
|
state,
|
|
getters,
|
|
actions,
|
|
mutations,
|
|
};
|