aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-ws
diff options
context:
space:
mode:
authorTeryk Bellahsene <teryk.bellahsene@sonarsource.com>2017-05-19 17:40:07 +0200
committerTeryk Bellahsene <teryk.bellahsene@sonarsource.com>2017-05-23 09:38:51 +0200
commitc1e24e180870470d45af355cfd05191ae6ae9d02 (patch)
tree5b9be97ce6173bc283220bbeeb4d06c5bfcde103 /sonar-ws
parentda5127258e536a6648653d189aa8c949a7ffc2f7 (diff)
downloadsonarqube-c1e24e180870470d45af355cfd05191ae6ae9d02.tar.gz
sonarqube-c1e24e180870470d45af355cfd05191ae6ae9d02.zip
SONAR-9269 Drop database ids of component in api/issues/* WS responses
Diffstat (limited to 'sonar-ws')
-rw-r--r--sonar-ws/src/main/protobuf/ws-issues.proto10
1 files changed, 5 insertions, 5 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-issues.proto b/sonar-ws/src/main/protobuf/ws-issues.proto
index 4e31149efcf..30a54ddbd34 100644
--- a/sonar-ws/src/main/protobuf/ws-issues.proto
+++ b/sonar-ws/src/main/protobuf/ws-issues.proto
@@ -56,7 +56,7 @@ message Operation {
repeated sonarqube.ws.commons.Rule rules = 3;
repeated Users.User users = 4;
// Deprecated since 5.5, action plan has been removed
- repeated ActionPlan actiunusedActionPlansonPlans = 5;
+ repeated ActionPlan unusedActionPlans = 5;
}
message Issue {
@@ -65,7 +65,7 @@ message Issue {
optional string rule = 2;
optional sonarqube.ws.commons.Severity severity = 3;
optional string component = 4;
- optional int64 componentId = 5;
+ optional int64 unusedComponentId = 5;
optional string project = 6;
optional string subProject = 7;
optional int32 line = 8;
@@ -172,7 +172,7 @@ message Languages {
message Component {
optional string organization = 11;
- optional int64 id = 1;
+ optional int64 deprecatedId = 1;
optional string key = 2;
optional string uuid = 3;
optional bool enabled = 4;
@@ -180,8 +180,8 @@ message Component {
optional string name = 6;
optional string longName = 7;
optional string path = 8;
- optional int64 projectId = 9;
- optional int64 subProjectId = 10;
+ optional int64 unusedProjectId = 9;
+ optional int64 unusedSubProjectId = 10;
}
// Response of GET api/issues/changelog