diff options
author | 2017-10-03 10:14:55 +0000 | |
---|---|---|
committer | 2017-10-03 10:14:55 +0000 | |
commit | cba83587419fa8439b4bbe16a1316e88c0961b91 (patch) | |
tree | 9f9d421a82a37a24f89c5238252eea8dc9088fd8 /app/utils | |
parent | 9e9c95952ca2a7efeafd316fff107b95fdd0f0b5 (diff) | |
parent | 1789adab406bc38499ef69fdb61bbb573578ebec (diff) |
Merge "fix api scheme for scan requests" into stable/euphrates
Diffstat (limited to 'app/utils')
-rw-r--r-- | app/utils/constants.py | 2 |
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): |