aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-ws/src/main
diff options
context:
space:
mode:
authorJulien Lancelot <julien.lancelot@sonarsource.com>2016-03-08 11:01:04 +0100
committerJulien Lancelot <julien.lancelot@sonarsource.com>2016-03-10 10:44:16 +0100
commitb551bd6ef3f878f7b68acdf759b995e227e1baaa (patch)
tree43cbf72aade73e15fe41fa185a392d595ee01dc2 /sonar-ws/src/main
parentd9d6031a949822c16cbb601975397588bf36cf07 (diff)
downloadsonarqube-b551bd6ef3f878f7b68acdf759b995e227e1baaa.tar.gz
sonarqube-b551bd6ef3f878f7b68acdf759b995e227e1baaa.zip
SONAR-7345 Rename Issue debt to effort in WS
Diffstat (limited to 'sonar-ws/src/main')
-rw-r--r--sonar-ws/src/main/protobuf/ws-issues.proto8
1 files changed, 7 insertions, 1 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-issues.proto b/sonar-ws/src/main/protobuf/ws-issues.proto
index 5459f84b684..ad073765c8c 100644
--- a/sonar-ws/src/main/protobuf/ws-issues.proto
+++ b/sonar-ws/src/main/protobuf/ws-issues.proto
@@ -33,7 +33,9 @@ message SearchWsResponse {
optional int32 ps = 3;
optional sonarqube.ws.commons.Paging paging = 4;
- // Total amount of debt, only when the facet "total" is enabled
+ // Total amount of effort, only when the facet "total" is enabled
+ optional int64 effortTotal = 13;
+ // Deprecated since 5.5, replaced by effortTotal
optional int64 debtTotal = 5;
repeated Issue issues = 6;
@@ -68,7 +70,11 @@ message Issue {
optional string resolution = 11;
optional string status = 12;
optional string message = 13;
+
+ optional string effort = 28;
+ // Deprecated since 5.5, replaced by effort
optional string debt = 14;
+
optional string assignee = 15;
optional string reporter = 16;