c7120e9637
* Add available languages in account settings Co-authored-by: Sojan <sojan@pepalo.com>
16 lines
353 B
JavaScript
16 lines
353 B
JavaScript
export default {
|
|
computed: {
|
|
hostURL() {
|
|
return window.chatwootConfig.hostURL;
|
|
},
|
|
twilioCallbackURL() {
|
|
return `${this.hostURL}/twilio/callback`;
|
|
},
|
|
vapidPublicKey() {
|
|
return window.chatwootConfig.vapidPublicKey;
|
|
},
|
|
enabledLanguages() {
|
|
return window.chatwootConfig.enabledLanguages;
|
|
},
|
|
},
|
|
};
|