0740d4762f
* 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
16 lines
301 B
JavaScript
16 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',
|
|
},
|
|
};
|