diff options
author | Belen Pruvost <belen.pruvost@sonarsource.com> | 2021-10-15 09:13:01 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2021-10-22 20:03:27 +0000 |
commit | a1771496e8535a4fe0197690ebbf048a31970472 (patch) | |
tree | 8ed7a3fa923859246c277011c2a16937b516b028 /sonar-ws | |
parent | 06672268a78369a8442e1d8f291b2d80c6d95f9a (diff) | |
download | sonarqube-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.proto | 12 |
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; + } +} + |