We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8cbf15a commit c2a18e6Copy full SHA for c2a18e6
backend/application/core/types.py
@@ -35,7 +35,6 @@ class Status:
35
STATUS_NOT_AFFECTED = "Not affected"
36
STATUS_NOT_SECURITY = "Not security"
37
STATUS_RISK_ACCEPTED = "Risk accepted"
38
- STATUS_AFFECTED = "Affected"
39
40
STATUS_CHOICES = [
41
(STATUS_OPEN, STATUS_OPEN),
@@ -47,7 +46,6 @@ class Status:
47
46
(STATUS_NOT_AFFECTED, STATUS_NOT_AFFECTED),
48
(STATUS_NOT_SECURITY, STATUS_NOT_SECURITY),
49
(STATUS_RISK_ACCEPTED, STATUS_RISK_ACCEPTED),
50
- (STATUS_AFFECTED, STATUS_AFFECTED),
51
]
52
53
STATUS_ACTIVE = [STATUS_OPEN, STATUS_AFFECTED, STATUS_IN_REVIEW]
0 commit comments