mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-10-31 19:17:48 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			317 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			317 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| export default {
 | |
|   APP_BASE_URL: '/',
 | |
|   get apiURL() {
 | |
|     return `${this.APP_BASE_URL}/`;
 | |
|   },
 | |
|   GRAVATAR_URL: 'https://www.gravatar.com/avatar/',
 | |
|   ASSIGNEE_TYPE: {
 | |
|     ME: 'me',
 | |
|     UNASSIGNED: 'unassigned',
 | |
|     ALL: 'all',
 | |
|   },
 | |
|   STATUS_TYPE: {
 | |
|     OPEN: 'open',
 | |
|     RESOLVED: 'resolved',
 | |
|     BOT: 'bot',
 | |
|   },
 | |
| };
 | 
