diff options
author | Sébastien Lesaint <sebastien.lesaint@sonarsource.com> | 2019-12-05 15:12:52 +0100 |
---|---|---|
committer | SonarTech <sonartech@sonarsource.com> | 2020-01-13 20:46:27 +0100 |
commit | 20800515eafd42ebe95017409df4430c7dc16e60 (patch) | |
tree | 7ef803bcaf9fe8b7263ff1c766cb0514326e2b02 /sonar-ws | |
parent | 29a5dec5cff33ddb418d09a743b8f95999e0a867 (diff) | |
download | sonarqube-20800515eafd42ebe95017409df4430c7dc16e60.tar.gz sonarqube-20800515eafd42ebe95017409df4430c7dc16e60.zip |
SONAR-12719 add resolution to response of api/hotspots/show
Diffstat (limited to 'sonar-ws')
-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 cef59629a8e..e851afb7adb 100644 --- a/sonar-ws/src/main/protobuf/ws-hotspots.proto +++ b/sonar-ws/src/main/protobuf/ws-hotspots.proto @@ -57,8 +57,7 @@ message ShowWsResponse { optional Component project = 3; optional Rule rule = 4; optional string status = 5; -// FIXME resolution field will be added later -// optional string resolution = 6; + optional string resolution = 6; optional int32 line = 7; optional string message = 8; optional string assignee = 9; |