Chatwoot/app/javascript/dashboard/store/modules/helpCenterPortals/index.js
Tejaswini Chile 782165478b
fix: Update article count in portal admin dashboard (#5647)
Co-authored-by: Pranav Raj S <pranav@chatwoot.com>
2022-10-21 13:43:15 -07:00

43 lines
714 B
JavaScript
Executable file

import { getters } from './getters';
import { actions } from './actions';
import { mutations } from './mutations';
export const defaultPortalFlags = {
isFetching: false,
isUpdating: false,
isDeleting: false,
};
const state = {
meta: {
allArticlesCount: 0,
mineArticlesCount: 0,
draftArticlesCount: 0,
archivedArticlesCount: 0,
},
portals: {
byId: {},
allIds: [],
uiFlags: {
byId: {
// 1: { isFetching: false, isUpdating: false, isDeleting: false },
},
},
meta: {
byId: {},
},
},
uiFlags: {
allFetched: false,
isFetching: false,
},
};
export default {
namespaced: true,
state,
getters,
actions,
mutations,
};