mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-03 20:48:07 +00:00 
			
		
		
		
	* 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',
 | 
						|
  },
 | 
						|
};
 |