f28ec29b8c
* Feature: Customise widget for bot conversations
19 lines
503 B
JavaScript
19 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;
|
|
},
|
|
},
|
|
};
|