mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-10-31 11:08:04 +00:00 
			
		
		
		
	 2cde42c7ec
			
		
	
	2cde42c7ec
	
	
	
		
			
			- 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;
 | |
|     },
 | |
|   },
 | |
| };
 |