mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-04 04:57:51 +00:00 
			
		
		
		
	* feat: Uses expanded layout as default if the breakpoint is below 992px * fixes: ES lint issue * chore: Review fixes * chore: Hide toggle sidebar menu in profile settings * chore: Fix login screen * Update app/javascript/dashboard/components/widgets/conversation/ConversationHeader.vue Co-authored-by: Shivam Mishra <scm.mymail@gmail.com> * chore: Review fixes * chore: Review fixes Co-authored-by: Shivam Mishra <scm.mymail@gmail.com> Co-authored-by: Nithin David Thomas <1277421+nithindavid@users.noreply.github.com>
		
			
				
	
	
		
			29 lines
		
	
	
		
			638 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			638 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',
 | 
						|
  },
 | 
						|
  ARTICLE_STATUS_TYPES: {
 | 
						|
    DRAFT: 0,
 | 
						|
    PUBLISH: 1,
 | 
						|
    ARCHIVE: 2,
 | 
						|
  },
 | 
						|
  LAYOUT_TYPES: {
 | 
						|
    CONDENSED: 'condensed',
 | 
						|
    EXPANDED: 'expanded',
 | 
						|
  },
 | 
						|
  DOCS_URL: '//www.chatwoot.com/docs/product/',
 | 
						|
  TESTIMONIAL_URL: 'https://testimonials.cdn.chatwoot.com/content.json',
 | 
						|
  SMALL_SCREEN_BREAKPOINT: 992,
 | 
						|
};
 | 
						|
export const DEFAULT_REDIRECT_URL = '/app/';
 |