From 16960c3ca325b33c5884f8f67ec2369453bc498f Mon Sep 17 00:00:00 2001 From: Koren Lev Date: Mon, 2 Oct 2017 12:11:30 +0300 Subject: fix api scheme for scan requests Change-Id: I26a732073fa577f5eb9165d808a32b96e4b62f7f Signed-off-by: Koren Lev --- app/utils/constants.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'app/utils') 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): -- cgit 1.2.3-korg