From a1771496e8535a4fe0197690ebbf048a31970472 Mon Sep 17 00:00:00 2001 From: Belen Pruvost Date: Fri, 15 Oct 2021 09:13:01 +0200 Subject: SONAR-15441 - QG Groups Search Endpoint --- sonar-ws/src/main/protobuf/ws-qualitygates.proto | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'sonar-ws') 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; + } +} + -- cgit v1.2.3