update job status constants

This commit is contained in:
2016-04-22 17:15:25 -07:00
parent fd1ebd3a33
commit bb97b7960b

View File

@@ -1,7 +1,8 @@
const constants = { const constants = {
JOB_STATUS_PENDING: 0, JOB_STATUS_PENDING: 'pending',
JOB_STATUS_PROCESSING: 1, JOB_STATUS_PROCESSING: 'processing',
JOB_STATUS_COMPLETED: 2, JOB_STATUS_COMPLETED: 'completed',
JOB_STATUS_FAILED: 'failed',
}; };
export default constants; export default constants;