mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-03 12:37:56 +00:00
- Add an upgrade CTA for the SLA feature ------------------- Co-authored-by: Sojan Jose <sojan@pepalo.com> Co-authored-by: Pranav <pranav@chatwoot.com>
21 lines
495 B
JavaScript
21 lines
495 B
JavaScript
export default {
|
|
computed: {
|
|
hostURL() {
|
|
return window.chatwootConfig.hostURL;
|
|
},
|
|
vapidPublicKey() {
|
|
return window.chatwootConfig.vapidPublicKey;
|
|
},
|
|
enabledLanguages() {
|
|
return window.chatwootConfig.enabledLanguages;
|
|
},
|
|
isEnterprise() {
|
|
return window.chatwootConfig.isEnterprise === 'true';
|
|
},
|
|
enterprisePlanName() {
|
|
// returns "community" or "enterprise"
|
|
return window.chatwootConfig?.enterprisePlanName;
|
|
},
|
|
},
|
|
};
|