Skip to content

Commit f635653

Browse files
authored
Merge pull request #389 from ritikrana4/fix/task-status
Added a TASK_STATUS - unassigned to constants
2 parents 0b80186 + b66339a commit f635653

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

constants/tasks.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ const TASK_STATUS = {
88
ACTIVE: 'active',
99
ASSIGNED: 'assigned',
1010
BLOCKED: 'blocked',
11-
COMPLETED: 'completed'
11+
COMPLETED: 'completed',
12+
UNASSIGNED: 'unAssigned'
1213
}
1314

1415
module.exports = { TASK_TYPE, TASK_STATUS }

0 commit comments

Comments
 (0)