mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-02 20:18:08 +00:00
* Chore: moves localstorage helper as a shared utility and refactors constants * Refactors constants file * Fixes merge conflicts * Delete constants.js --------- Co-authored-by: Sivin Varghese <64252451+iamsivin@users.noreply.github.com>
30 lines
698 B
JavaScript
30 lines
698 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: 1024,
|
|
AVAILABILITY_STATUS_KEYS: ['online', 'busy', 'offline'],
|
|
};
|
|
export const DEFAULT_REDIRECT_URL = '/app/';
|