summaryrefslogtreecommitdiffstats
path: root/app/utils/constants.py
diff options
context:
space:
mode:
Diffstat (limited to 'app/utils/constants.py')
-rw-r--r--app/utils/constants.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/app/utils/constants.py b/app/utils/constants.py
index 44850b3..01bf09f 100644
--- a/app/utils/constants.py
+++ b/app/utils/constants.py
@@ -19,11 +19,13 @@ class StringEnum(Enum):
class ScanStatus(StringEnum):
+ DRAFT = "draft"
PENDING = "pending"
RUNNING = "running"
COMPLETED = "completed"
COMPLETED_WITH_ERRORS = "completed_with_errors"
FAILED = "failed"
+ ABORTED = "aborted"
class OperationalStatus(StringEnum):