mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-03 20:48:07 +00:00 
			
		
		
		
	* feat: Adds the ability to publish an article * chore: Disabled publish button and dropdown when there is no article id * chore: Review fixes * chore: Review fixes * Update app/javascript/dashboard/routes/dashboard/helpcenter/components/Header/EditArticleHeader.vue * chore: Review fixes Co-authored-by: Muhsin Keloth <muhsinkeramam@gmail.com>
		
			
				
	
	
		
			27 lines
		
	
	
		
			533 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			533 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/',
 | 
						|
};
 | 
						|
export const DEFAULT_REDIRECT_URL = '/app/';
 |