diff options
author | Pierre Guillot <50145663+pierre-guillot-sonarsource@users.noreply.github.com> | 2019-05-08 16:36:58 +0200 |
---|---|---|
committer | SonarTech <sonartech@sonarsource.com> | 2019-05-22 20:21:14 +0200 |
commit | 5d140eb1e005bb57f7d41dc952efdf11dead36ef (patch) | |
tree | 21ce793050dc4d172edbc01f42dc93f7c4a68d24 /sonar-ws/src/main | |
parent | 864ad5894020f45953d2aac95b1b85744c242f7e (diff) | |
download | sonarqube-5d140eb1e005bb57f7d41dc952efdf11dead36ef.tar.gz sonarqube-5d140eb1e005bb57f7d41dc952efdf11dead36ef.zip |
SONAR-12026 Add transition "Set as In Review" on Security Hotspots
Diffstat (limited to 'sonar-ws/src/main')
-rw-r--r-- | sonar-ws/src/main/protobuf/ws-security.proto | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-security.proto b/sonar-ws/src/main/protobuf/ws-security.proto index b9d9b3686ae..059bd1666da 100644 --- a/sonar-ws/src/main/protobuf/ws-security.proto +++ b/sonar-ws/src/main/protobuf/ws-security.proto @@ -35,8 +35,8 @@ message SecurityStandardCategoryStatistics { optional string category = 1; optional int64 vulnerabilities = 2; optional int64 vulnerabilityRating = 3; - optional int64 toReviewSecurityHotspots = 4; - optional int64 openSecurityHotspots = 5; + optional int64 inReviewSecurityHotspots = 4; + optional int64 toReviewSecurityHotspots = 5; optional int64 wontFixSecurityHotspots = 6; repeated CweStatistics distribution = 7; optional int64 activeRules = 8; @@ -47,8 +47,8 @@ message CweStatistics { optional string cwe = 1; optional int64 vulnerabilities = 2; optional int64 vulnerabilityRating = 3; - optional int64 toReviewSecurityHotspots = 4; - optional int64 openSecurityHotspots = 5; + optional int64 inReviewSecurityHotspots = 4; + optional int64 toReviewSecurityHotspots = 5; optional int64 wontFixSecurityHotspots = 6; optional int64 activeRules = 7; optional int64 totalRules = 8; |