mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-10-31 19:17:48 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			503 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			503 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| export default {
 | |
|   computed: {
 | |
|     hideInputForBotConversations() {
 | |
|       return window.chatwootWebChannel.hideInputForBotConversations;
 | |
|     },
 | |
|     useInboxAvatarForBot() {
 | |
|       return window.chatwootWidgetDefaults.useInboxAvatarForBot;
 | |
|     },
 | |
|     hasAConnectedAgentBot() {
 | |
|       return !!window.chatwootWebChannel.hasAConnectedAgentBot;
 | |
|     },
 | |
|     inboxAvatarUrl() {
 | |
|       return window.chatwootWebChannel.avatarUrl;
 | |
|     },
 | |
|     channelConfig() {
 | |
|       return window.chatwootWebChannel;
 | |
|     },
 | |
|   },
 | |
| };
 | 
