]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-12720 move Comment to ws-commons.proto
authorSébastien Lesaint <sebastien.lesaint@sonarsource.com>
Mon, 9 Dec 2019 09:04:05 +0000 (10:04 +0100)
committerSonarTech <sonartech@sonarsource.com>
Mon, 13 Jan 2020 19:46:30 +0000 (20:46 +0100)
server/sonar-webserver-webapi/src/main/java/org/sonar/server/issue/ws/SearchResponseFormat.java
sonar-ws/src/main/protobuf/ws-commons.proto
sonar-ws/src/main/protobuf/ws-issues.proto

index 02ef9b94ecf48d90c1745a25da3e164df502339c..452d4b5690cf43b5d67c7d2c9c1aea851e202d6b 100644 (file)
@@ -46,9 +46,9 @@ import org.sonar.server.issue.TextRangeResponseFormatter;
 import org.sonar.server.issue.workflow.Transition;
 import org.sonarqube.ws.Common;
 import org.sonarqube.ws.Common.User;
+import org.sonarqube.ws.Common.Comment;
 import org.sonarqube.ws.Issues;
 import org.sonarqube.ws.Issues.Actions;
-import org.sonarqube.ws.Issues.Comment;
 import org.sonarqube.ws.Issues.Comments;
 import org.sonarqube.ws.Issues.Component;
 import org.sonarqube.ws.Issues.Issue;
index f94db9af46607ebd21c423e2ad6cc05012400fab..73a7b39b6d3d58b8b8c364532f67fc90ea24ccee 100644 (file)
@@ -129,6 +129,15 @@ message Changelog {
   }
 }
 
+message Comment {
+  optional string key = 1;
+  optional string login = 2;
+  optional string htmlText = 5;
+  optional string markdown = 6;
+  optional bool updatable = 7;
+  optional string createdAt = 8;
+}
+
 message Metric {
   optional string key = 1;
   optional string name = 2;
index fa6c6f65f1616ff050ee90fac69e01a2b0fe531a..40c0921a813f8da02a8f99048f5d1c6d3f253c07 100644 (file)
@@ -164,22 +164,8 @@ message Actions {
   repeated string actions = 1;
 }
 
-message Comment {
-  optional string key = 1;
-  optional string login = 2;
-  // TODO drop, it's already in field "users"
-  optional string email = 3;
-  // TODO drop, it's already in field "users"
-  optional string userName = 4;
-  optional string htmlText = 5;
-  // TODO rename markdownText ?
-  optional string markdown = 6;
-  optional bool updatable = 7;
-  optional string createdAt = 8;
-}
-
 message Comments {
-  repeated Comment comments = 1;
+  repeated sonarqube.ws.commons.Comment comments = 1;
 }
 
 // Deprecated since 5.5