add upload status constants

This commit is contained in:
Travis Eden 2018-04-02 09:30:48 -04:00 committed by Sean Yesmunt
parent 5436a9dde6
commit 24214bf660

View file

@ -0,0 +1,5 @@
export const API_DOWN = 'apiDown';
export const READY = 'ready';
export const IN_PROGRESS = 'inProgress';
export const COMPLETE = 'complete';
export const MANUAL = 'manual';