722f540b03
- Add email collect hook on creating conversation - Merge contact if it already exist
14 lines
228 B
JavaScript
Executable file
14 lines
228 B
JavaScript
Executable file
export const APP_BASE_URL = '';
|
|
|
|
export const MESSAGE_STATUS = {
|
|
FAILED: 'failed',
|
|
SUCCESS: 'success',
|
|
PROGRESS: 'progress',
|
|
};
|
|
|
|
export const MESSAGE_TYPE = {
|
|
INCOMING: 0,
|
|
OUTGOING: 1,
|
|
ACTIVITY: 2,
|
|
TEMPLATE: 3,
|
|
};
|