Chatwoot/app/javascript/shared/mixins/configMixin.js
Pranav Raj S c7120e9637
Chore: Add translated languages to account settings (#826)
* Add available languages in account settings

Co-authored-by: Sojan <sojan@pepalo.com>
2020-05-06 13:38:36 +05:30

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