diff options
author | Pierre Guillot <pierre.guillot@sonarsource.com> | 2019-05-10 09:40:58 +0200 |
---|---|---|
committer | SonarTech <sonartech@sonarsource.com> | 2019-05-22 20:21:15 +0200 |
commit | cb3d8324f859cf5733646616e1e20efbd07ffebb (patch) | |
tree | e75afe2d8b3190c25c9596f26bc96e232904f315 /sonar-ws | |
parent | ea8bc156195d95eef947ff49dd4d2535a3c56d26 (diff) | |
download | sonarqube-cb3d8324f859cf5733646616e1e20efbd07ffebb.tar.gz sonarqube-cb3d8324f859cf5733646616e1e20efbd07ffebb.zip |
SONAR-12026 add transition reset as to review
Diffstat (limited to 'sonar-ws')
-rw-r--r-- | sonar-ws/src/main/protobuf/ws-security.proto | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-security.proto b/sonar-ws/src/main/protobuf/ws-security.proto index 17b894f8673..67d7c7e7264 100644 --- a/sonar-ws/src/main/protobuf/ws-security.proto +++ b/sonar-ws/src/main/protobuf/ws-security.proto @@ -37,7 +37,7 @@ message SecurityStandardCategoryStatistics { optional int64 vulnerabilityRating = 3; optional int64 inReviewSecurityHotspots = 4; optional int64 toReviewSecurityHotspots = 5; - optional int64 resolvedSecurityHotspots = 6; + optional int64 reviewedSecurityHotspots = 6; repeated CweStatistics distribution = 7; optional int64 activeRules = 8; optional int64 totalRules = 9; @@ -49,7 +49,7 @@ message CweStatistics { optional int64 vulnerabilityRating = 3; optional int64 inReviewSecurityHotspots = 4; optional int64 toReviewSecurityHotspots = 5; - optional int64 resolvedSecurityHotspots = 6; + optional int64 reviewedSecurityHotspots = 6; optional int64 activeRules = 7; optional int64 totalRules = 8; } |