aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-ws
diff options
context:
space:
mode:
authorSébastien Lesaint <sebastien.lesaint@sonarsource.com>2019-12-09 18:10:28 +0100
committerSonarTech <sonartech@sonarsource.com>2020-01-13 20:46:27 +0100
commit603ebbe3007b850f7a30755115eefc16b1bb7d1a (patch)
treedbc755c72750fc08961edc6a521ef0f30151c146 /sonar-ws
parenta4200ecfa013c853f0c44b941d4365218af940fa (diff)
downloadsonarqube-603ebbe3007b850f7a30755115eefc16b1bb7d1a.tar.gz
sonarqube-603ebbe3007b850f7a30755115eefc16b1bb7d1a.zip
SONAR-12718 use User for author and assignee in api/hotspots/show
Diffstat (limited to 'sonar-ws')
-rw-r--r--sonar-ws/src/main/protobuf/ws-hotspots.proto5
1 files changed, 2 insertions, 3 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-hotspots.proto b/sonar-ws/src/main/protobuf/ws-hotspots.proto
index a4ce5baed97..d67bc02ef6d 100644
--- a/sonar-ws/src/main/protobuf/ws-hotspots.proto
+++ b/sonar-ws/src/main/protobuf/ws-hotspots.proto
@@ -60,9 +60,8 @@ message ShowWsResponse {
optional string resolution = 6;
optional int32 line = 7;
optional string message = 8;
- optional string assignee = 9;
- // SCM login of the committer who introduced the issue
- optional string author = 10;
+ optional sonarqube.ws.commons.User assignee = 9;
+ optional sonarqube.ws.commons.User author = 10;
optional string creationDate = 11;
optional string updateDate = 12;
optional sonarqube.ws.commons.TextRange textRange = 13;