fix: Allow ending the conversation if snoozed or pending (#5793)

This commit is contained in:
Pranav Raj S
2022-11-03 13:47:24 -07:00
committed by GitHub
parent 8bd5ba187a
commit 4bb5e812ba
2 changed files with 16 additions and 1 deletions

View File

@@ -10,6 +10,13 @@ export const MESSAGE_TYPE = {
ACTIVITY: 2,
TEMPLATE: 3,
};
export const CONVERSATION_STATUS = {
OPEN: 'open',
RESOLVED: 'resolved',
PENDING: 'pending',
SNOOZED: 'snoozed',
};
// Size in mega bytes
export const MAXIMUM_FILE_UPLOAD_SIZE = 40;
export const MAXIMUM_FILE_UPLOAD_SIZE_TWILIO_SMS_CHANNEL = 5;