mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-10-30 18:47:51 +00:00 
			
		
		
		
	 0740d4762f
			
		
	
	0740d4762f
	
	
	
		
			
			* Use conversationPage module for pagination * Load more conversations * Reset list if conversation status is changed * Add specs to conversationPage * Reset filter when page is re-mounted * Update text * Update text
		
			
				
	
	
		
			17 lines
		
	
	
		
			301 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			301 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',
 | |
|   },
 | |
| };
 |