aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-ws/src/main/protobuf/ws-projects.proto
diff options
context:
space:
mode:
authorSébastien Lesaint <sebastien.lesaint@sonarsource.com>2017-02-17 16:19:57 +0100
committerSébastien Lesaint <sebastien.lesaint@sonarsource.com>2017-02-17 16:23:24 +0100
commitfa327b38613d18ec445831242f84d500bf284ac3 (patch)
tree940811204fae4b23fd53a067a72b64d1cfd902c3 /sonar-ws/src/main/protobuf/ws-projects.proto
parentf4039bbb34726f62ee61e45503c2bfa6c87dc3fb (diff)
parent3b673b37f88fc38b84244bd541d20ee9ac510486 (diff)
downloadsonarqube-fa327b38613d18ec445831242f84d500bf284ac3.tar.gz
sonarqube-fa327b38613d18ec445831242f84d500bf284ac3.zip
Merge branch 'branch-6.3'
Diffstat (limited to 'sonar-ws/src/main/protobuf/ws-projects.proto')
-rw-r--r--sonar-ws/src/main/protobuf/ws-projects.proto14
1 files changed, 14 insertions, 0 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-projects.proto b/sonar-ws/src/main/protobuf/ws-projects.proto
index 64fb78379ac..7dcb6260857 100644
--- a/sonar-ws/src/main/protobuf/ws-projects.proto
+++ b/sonar-ws/src/main/protobuf/ws-projects.proto
@@ -57,3 +57,17 @@ message CreateWsResponse {
}
}
+// WS api/projects/search
+message SearchWsResponse {
+ optional sonarqube.ws.commons.Paging paging = 1;
+ repeated Component components = 2;
+
+ message Component {
+ optional string organization = 1;
+ optional string id = 2;
+ optional string key = 3;
+ optional string name = 4;
+ optional string qualifier = 5;
+ }
+}
+