mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-10-31 19:17:48 +00:00 
			
		
		
		
	 f819bc0f33
			
		
	
	f819bc0f33
	
	
	
		
			
			* Use installation config in widget * Add configuration for installation in UI * Add config for mailer Co-authored-by: Sojan <sojan@pepalo.com>
		
			
				
	
	
		
			28 lines
		
	
	
		
			804 B
		
	
	
	
		
			JavaScript
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			804 B
		
	
	
	
		
			JavaScript
		
	
	
		
			Executable File
		
	
	
	
	
| import Vue from 'vue';
 | |
| import Vuex 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';
 | |
| 
 | |
| Vue.use(Vuex);
 | |
| 
 | |
| export default new Vuex.Store({
 | |
|   modules: {
 | |
|     agent,
 | |
|     appConfig,
 | |
|     contacts,
 | |
|     conversation,
 | |
|     conversationAttributes,
 | |
|     conversationLabels,
 | |
|     events,
 | |
|     globalConfig,
 | |
|     message,
 | |
|   },
 | |
| });
 |