mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-02 12:08:01 +00:00
Fixes https://github.com/chatwoot/chatwoot/issues/8436 Fixes https://github.com/chatwoot/chatwoot/issues/9767 Fixes https://github.com/chatwoot/chatwoot/issues/10156 Fixes https://github.com/chatwoot/chatwoot/issues/6031 Fixes https://github.com/chatwoot/chatwoot/issues/5696 Fixes https://github.com/chatwoot/chatwoot/issues/9250 Fixes https://github.com/chatwoot/chatwoot/issues/9762 --------- Co-authored-by: Pranav <pranavrajs@gmail.com> Co-authored-by: Sivin Varghese <64252451+iamsivin@users.noreply.github.com>
30 lines
908 B
JavaScript
Executable File
30 lines
908 B
JavaScript
Executable File
import { createStore } from 'vuex';
|
|
|
|
import agent from 'widget/store/modules/agent';
|
|
import appConfig from 'widget/store/modules/appConfig';
|
|
import contacts from 'widget/store/modules/contacts';
|
|
import conversation from 'widget/store/modules/conversation';
|
|
import conversationAttributes from 'widget/store/modules/conversationAttributes';
|
|
import conversationLabels from 'widget/store/modules/conversationLabels';
|
|
import events from 'widget/store/modules/events';
|
|
import globalConfig from 'shared/store/globalConfig';
|
|
import message from 'widget/store/modules/message';
|
|
import campaign from 'widget/store/modules/campaign';
|
|
import article from 'widget/store/modules/articles';
|
|
|
|
export default createStore({
|
|
modules: {
|
|
agent,
|
|
appConfig,
|
|
contacts,
|
|
conversation,
|
|
conversationAttributes,
|
|
conversationLabels,
|
|
events,
|
|
globalConfig,
|
|
message,
|
|
campaign,
|
|
article,
|
|
},
|
|
});
|