feat: Add pending message on dashboard (#1547)
This commit is contained in:
committed by
GitHub
parent
3e61ea5cfa
commit
7c62d3629c
@@ -68,6 +68,8 @@
|
||||
--r-900: #C30011;
|
||||
|
||||
// Common color aliases
|
||||
--color-woot: var(--w-500);
|
||||
|
||||
--color-heading: #1f2d3d;
|
||||
--color-body: #3c4858;
|
||||
|
||||
|
||||
@@ -1,6 +0,0 @@
|
||||
export const MESSAGE_TYPE = {
|
||||
INCOMING: 0,
|
||||
OUTGOING: 1,
|
||||
ACTIVITY: 2,
|
||||
TEMPLATE: 3,
|
||||
};
|
||||
12
app/javascript/shared/constants/messages.js
Normal file
12
app/javascript/shared/constants/messages.js
Normal file
@@ -0,0 +1,12 @@
|
||||
export const MESSAGE_STATUS = {
|
||||
FAILED: 'failed',
|
||||
SENT: 'sent',
|
||||
PROGRESS: 'progress',
|
||||
};
|
||||
|
||||
export const MESSAGE_TYPE = {
|
||||
INCOMING: 0,
|
||||
OUTGOING: 1,
|
||||
ACTIVITY: 2,
|
||||
TEMPLATE: 3,
|
||||
};
|
||||
Reference in New Issue
Block a user