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;
|
||
|
},
|
||
|
},
|
||
|
};
|