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

Side by Side Diff: appengine/findit/model/suspected_cl_status.py

Issue 2320153003: [Findit] Datamodel change for triaging at CL level. (Closed)
Patch Set: change index.yaml Created 4 years, 2 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 unified diff | Download patch
OLDNEW
(Empty)
1 # Copyright 2016 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5
6 # Represents triage result of a suspected cl.
7 CORRECT = 0
8 INCORRECT = 1
9 PARTIALLY_CORRECT = 2
10 PARTIALLY_TRIAGED = 3
11
12
13 RESULT_STATUS_TO_DESCRIPTION = {
14 CORRECT: 'Correct',
15 INCORRECT: 'Incorrect',
16 PARTIALLY_CORRECT: 'Partially Correct',
17 PARTIALLY_TRIAGED: 'Partially triaged'
18 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698