aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-ws/src/main/protobuf
diff options
context:
space:
mode:
authorSébastien Lesaint <sebastien.lesaint@sonarsource.com>2016-09-28 18:03:07 +0200
committerSébastien Lesaint <sebastien.lesaint@sonarsource.com>2016-09-29 08:58:21 +0200
commit490fb33ae2d1fccc2e0f573073a2b5eb558cb5b0 (patch)
tree8eee688f56a54f5cde282874c5dde0f8b71fbe48 /sonar-ws/src/main/protobuf
parent9a7b16406681a4bea454525a17bd884e0764ed1f (diff)
downloadsonarqube-490fb33ae2d1fccc2e0f573073a2b5eb558cb5b0.tar.gz
sonarqube-490fb33ae2d1fccc2e0f573073a2b5eb558cb5b0.zip
SONAR-8100 remove return of id and id parameter in organizations WSs
Diffstat (limited to 'sonar-ws/src/main/protobuf')
-rw-r--r--sonar-ws/src/main/protobuf/ws-organizations.proto11
1 files changed, 5 insertions, 6 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-organizations.proto b/sonar-ws/src/main/protobuf/ws-organizations.proto
index 87754dd2142..4029ca50a75 100644
--- a/sonar-ws/src/main/protobuf/ws-organizations.proto
+++ b/sonar-ws/src/main/protobuf/ws-organizations.proto
@@ -40,10 +40,9 @@ message SearchWsResponse {
}
message Organization {
- optional string id = 1;
- optional string key = 2;
- optional string name = 3;
- optional string description = 4;
- optional string url = 5;
- optional string avatar = 6;
+ optional string key = 1;
+ optional string name = 2;
+ optional string description = 3;
+ optional string url = 4;
+ optional string avatar = 5;
}