aboutsummaryrefslogtreecommitdiff
path: root/app/models/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'app/models/__init__.py')
-rw-r--r--app/models/__init__.py10
1 files changed, 9 insertions, 1 deletions
diff --git a/app/models/__init__.py b/app/models/__init__.py
index 628f08d..95895b2 100644
--- a/app/models/__init__.py
+++ b/app/models/__init__.py
@@ -108,6 +108,7 @@ SYSTEM_MAP_KEY = 'system_map'
TEXT_OFFSET_KEY = 'text_offset'
TIME_KEY = 'time'
TOKEN_KEY = 'token'
+TYPE_KEY = 'type'
UIMAGE_ADDR_KEY = 'uimage_addr'
UIMAGE_KEY = 'uimage'
UPDATED_KEY = 'updated_on'
@@ -135,10 +136,12 @@ LAB_KEY = "lab"
# Job and/or build status.
BUILD_STATUS = 'BUILD'
+ERROR_STATUS = 'ERROR'
FAIL_STATUS = 'FAIL'
+OFFLINE_STATUS = 'OFFLINE'
PASS_STATUS = 'PASS'
+SENT_STATUS = 'SENT'
UNKNOWN_STATUS = 'UNKNOWN'
-OFFLINE_STATUS = 'OFFLINE'
UNTRIED_STATUS = 'UNTRIED'
# Build file names.
@@ -166,6 +169,11 @@ SUBSCRIPTION_COLLECTION = 'subscription'
TOKEN_COLLECTION = 'api-token'
BISECT_COLLECTION = 'bisect'
LAB_COLLECTION = 'lab'
+REPORT_COLLECTION = 'report'
+
+# Report types.
+BUILD_REPORT = 'build'
+BOOT_REPORT = 'boot'
# Bisect values.
BISECT_BOOT_STATUS_KEY = 'boot_status'