Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1521)

Unified Diff: appengine/findit/model/result_status.py

Issue 2320153003: [Findit] Datamodel change for triaging at CL level. (Closed)
Patch Set: change index.yaml Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: appengine/findit/model/result_status.py
diff --git a/appengine/findit/model/result_status.py b/appengine/findit/model/result_status.py
index 37e417e44842306cf438f75f5376207503ae12ad..6fb269622cefe774878a9338236f2eea92129006 100644
--- a/appengine/findit/model/result_status.py
+++ b/appengine/findit/model/result_status.py
@@ -11,6 +11,7 @@ NOT_FOUND_INCORRECT = 20
FOUND_UNTRIAGED = 30
NOT_FOUND_UNTRIAGED = 40
NOT_FOUND_CORRECT = 50
+PARTIALLY_CORRECT_FOUND = 60
FOUND_CORRECT_DUPLICATE = 1000
FOUND_INCORRECT_DUPLICATE = 1010
@@ -22,6 +23,7 @@ RESULT_STATUS_TO_DESCRIPTION = {
FOUND_UNTRIAGED: 'Untriaged - Found',
NOT_FOUND_UNTRIAGED: 'Untriaged - Not Found',
NOT_FOUND_CORRECT: 'Correct - Not Found',
+ PARTIALLY_CORRECT_FOUND : 'Partially Correct - Found',
FOUND_CORRECT_DUPLICATE: 'Correct(duplicate) - Found',
FOUND_INCORRECT_DUPLICATE: 'Incorrect(duplicate) - Found'
}

Powered by Google App Engine
This is Rietveld 408576698