diff options
author | Pascal Mugnier <pascal.mugnier@sonarsource.com> | 2018-04-20 07:38:14 +0200 |
---|---|---|
committer | SonarTech <sonartech@sonarsource.com> | 2018-04-24 20:20:46 +0200 |
commit | a7d7420a719ee56590e5c09d70bfd1a75a14abdf (patch) | |
tree | 8eb9897166acdaeeb4f3ce4555be3aceb8769593 /sonar-ws | |
parent | c3d089474c621b449d10f5576bff671541cd626d (diff) | |
download | sonarqube-a7d7420a719ee56590e5c09d70bfd1a75a14abdf.tar.gz sonarqube-a7d7420a719ee56590e5c09d70bfd1a75a14abdf.zip |
SONAR-9472 Change the rendering of best values on the Measures page
Diffstat (limited to 'sonar-ws')
-rw-r--r-- | sonar-ws/src/main/protobuf/ws-measures.proto | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-measures.proto b/sonar-ws/src/main/protobuf/ws-measures.proto index c861426c3ea..0385751c43b 100644 --- a/sonar-ws/src/main/protobuf/ws-measures.proto +++ b/sonar-ws/src/main/protobuf/ws-measures.proto @@ -99,6 +99,7 @@ message Measure { optional string value = 2; optional PeriodsValue periods = 3; optional string component = 4; + optional bool bestValue = 5; } message PeriodsValue { @@ -108,4 +109,5 @@ message PeriodsValue { message PeriodValue { optional int32 index = 1; optional string value = 2; + optional bool bestValue = 3; } |