Files
leadchat/app/javascript/shared/mixins/configMixin.js
2020-05-02 16:25:57 +05:30

11 lines
187 B
JavaScript

export default {
computed: {
hostURL() {
return window.chatwootConfig.hostURL;
},
twilioCallbackURL() {
return `${this.hostURL}/twilio/callback`;
},
},
};