d7cfe6858e
Co-authored-by: Tejaswini <tejaswini@chatwoot.com> Co-authored-by: Pranav Raj S <pranav@chatwoot.com> Co-authored-by: Muhsin Keloth <muhsinkeramam@gmail.com>
29 lines
489 B
JavaScript
29 lines
489 B
JavaScript
import { getters } from './getters';
|
|
import { actions } from './actions';
|
|
import { mutations } from './mutations';
|
|
|
|
const state = {
|
|
meta: {
|
|
count: 0,
|
|
currentPage: 1,
|
|
},
|
|
records: {},
|
|
uiFlags: {
|
|
isFetching: false,
|
|
isFetchingItem: false,
|
|
isFetchingInboxes: false,
|
|
isUpdating: false,
|
|
isMerging: false,
|
|
isDeleting: false,
|
|
},
|
|
sortOrder: [],
|
|
appliedFilters: [],
|
|
};
|
|
|
|
export default {
|
|
namespaced: true,
|
|
state,
|
|
getters,
|
|
actions,
|
|
mutations,
|
|
};
|