diff options
author | Sébastien Lesaint <sebastien.lesaint@sonarsource.com> | 2019-12-11 11:22:58 +0100 |
---|---|---|
committer | SonarTech <sonartech@sonarsource.com> | 2020-01-13 20:46:28 +0100 |
commit | fc60b0a3b35ebab8ac47a3547ccd231537f4765a (patch) | |
tree | c1ca41919c6111e4375d5bffe2445e1b3ab6c868 /sonar-ws/src/main | |
parent | cbe3a6997e7955f03f885b0622fa9c7fa0295463 (diff) | |
download | sonarqube-fc60b0a3b35ebab8ac47a3547ccd231537f4765a.tar.gz sonarqube-fc60b0a3b35ebab8ac47a3547ccd231537f4765a.zip |
SONAR-12751 add status and resolution params to api/hotspots/search
also added resolution field to the response
Diffstat (limited to 'sonar-ws/src/main')
-rw-r--r-- | sonar-ws/src/main/protobuf/ws-hotspots.proto | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-hotspots.proto b/sonar-ws/src/main/protobuf/ws-hotspots.proto index d67bc02ef6d..4d4f4efce30 100644 --- a/sonar-ws/src/main/protobuf/ws-hotspots.proto +++ b/sonar-ws/src/main/protobuf/ws-hotspots.proto @@ -39,8 +39,7 @@ message SearchWsResponse { optional string securityCategory = 4; optional string vulnerabilityProbability = 5; optional string status = 6; - // FIXME resolution field will be added later - // optional string resolution = 7; + optional string resolution = 7; optional int32 line = 8; optional string message = 9; optional string assignee = 10; |