mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-04 04:57:51 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			456 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			456 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
export default {
 | 
						|
  GRAVATAR_URL: 'https://www.gravatar.com/avatar/',
 | 
						|
  ASSIGNEE_TYPE: {
 | 
						|
    ME: 'me',
 | 
						|
    UNASSIGNED: 'unassigned',
 | 
						|
    ALL: 'all',
 | 
						|
  },
 | 
						|
  STATUS_TYPE: {
 | 
						|
    OPEN: 'open',
 | 
						|
    RESOLVED: 'resolved',
 | 
						|
    PENDING: 'pending',
 | 
						|
    SNOOZED: 'snoozed',
 | 
						|
    ALL: 'all',
 | 
						|
  },
 | 
						|
  LAYOUT_TYPES: {
 | 
						|
    CONDENSED: 'condensed',
 | 
						|
    EXPANDED: 'expanded',
 | 
						|
  },
 | 
						|
  DOCS_URL: '//www.chatwoot.com/docs/product/',
 | 
						|
};
 | 
						|
export const DEFAULT_REDIRECT_URL = '/app/';
 |