diff options
author | Klaudio Sinani <klaudio.sinani@sonarsource.com> | 2022-02-11 11:21:13 +0100 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2022-02-25 20:02:54 +0000 |
commit | fd43b7adbc2d335c596d063528cb0a094b3394d2 (patch) | |
tree | bca33135d69ce9530f32fd6f2271f80093299fae /sonar-ws | |
parent | 647e61ec77d014ff74bffc4a8f462fa3e47fb1d7 (diff) | |
download | sonarqube-fd43b7adbc2d335c596d063528cb0a094b3394d2.tar.gz sonarqube-fd43b7adbc2d335c596d063528cb0a094b3394d2.zip |
SONAR-16009 Extend response of `api/hotspots/search` to include secondary locations data
Diffstat (limited to 'sonar-ws')
-rw-r--r-- | sonar-ws/src/main/protobuf/ws-hotspots.proto | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-hotspots.proto b/sonar-ws/src/main/protobuf/ws-hotspots.proto index 008a02ca159..4560baa7dcc 100644 --- a/sonar-ws/src/main/protobuf/ws-hotspots.proto +++ b/sonar-ws/src/main/protobuf/ws-hotspots.proto @@ -46,6 +46,8 @@ message SearchWsResponse { optional string author = 11; optional string creationDate = 12; optional string updateDate = 13; + optional sonarqube.ws.commons.TextRange textRange = 14; + repeated sonarqube.ws.commons.Flow flows = 15; } } |