diff options
author | Sébastien Lesaint <sebastien.lesaint@sonarsource.com> | 2019-12-09 18:10:28 +0100 |
---|---|---|
committer | SonarTech <sonartech@sonarsource.com> | 2020-01-13 20:46:27 +0100 |
commit | 603ebbe3007b850f7a30755115eefc16b1bb7d1a (patch) | |
tree | dbc755c72750fc08961edc6a521ef0f30151c146 /sonar-ws | |
parent | a4200ecfa013c853f0c44b941d4365218af940fa (diff) | |
download | sonarqube-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.proto | 5 |
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; |