aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-ws
diff options
context:
space:
mode:
authorBelen Pruvost <belen.pruvost@sonarsource.com>2021-10-15 09:13:01 +0200
committersonartech <sonartech@sonarsource.com>2021-10-22 20:03:27 +0000
commita1771496e8535a4fe0197690ebbf048a31970472 (patch)
tree8ed7a3fa923859246c277011c2a16937b516b028 /sonar-ws
parent06672268a78369a8442e1d8f291b2d80c6d95f9a (diff)
downloadsonarqube-a1771496e8535a4fe0197690ebbf048a31970472.tar.gz
sonarqube-a1771496e8535a4fe0197690ebbf048a31970472.zip
SONAR-15441 - QG Groups Search Endpoint
Diffstat (limited to 'sonar-ws')
-rw-r--r--sonar-ws/src/main/protobuf/ws-qualitygates.proto12
1 files changed, 12 insertions, 0 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-qualitygates.proto b/sonar-ws/src/main/protobuf/ws-qualitygates.proto
index 781e5b2c147..5538d4b5922 100644
--- a/sonar-ws/src/main/protobuf/ws-qualitygates.proto
+++ b/sonar-ws/src/main/protobuf/ws-qualitygates.proto
@@ -182,5 +182,17 @@ message Actions {
optional bool manageConditions = 6;
}
+// WS api/qualitygates/search_groups
+message SearchGroupsResponse {
+ optional sonarqube.ws.commons.Paging paging = 1;
+ repeated Group groups = 2;
+
+ message Group {
+ optional string name = 1;
+ optional string description = 2;
+ optional bool selected = 3;
+ }
+}
+