aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-ws
diff options
context:
space:
mode:
authorZipeng WU <zipeng.wu@sonarsource.com>2021-10-13 16:35:52 +0200
committersonartech <sonartech@sonarsource.com>2021-10-22 20:03:27 +0000
commit029e98315813bf42740329c63f6b54c72044fe92 (patch)
treeedb4a14fc000a499643252492ac42c8fcde91991 /sonar-ws
parentdd6441108cb87bb35bd6247c160736a9b2835c5a (diff)
downloadsonarqube-029e98315813bf42740329c63f6b54c72044fe92.tar.gz
sonarqube-029e98315813bf42740329c63f6b54c72044fe92.zip
SONAR-15514 Create api/qualitygates/search_users service
Diffstat (limited to 'sonar-ws')
-rw-r--r--sonar-ws/src/main/protobuf/ws-qualitygates.proto13
1 files changed, 13 insertions, 0 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-qualitygates.proto b/sonar-ws/src/main/protobuf/ws-qualitygates.proto
index 5538d4b5922..e9aa2946124 100644
--- a/sonar-ws/src/main/protobuf/ws-qualitygates.proto
+++ b/sonar-ws/src/main/protobuf/ws-qualitygates.proto
@@ -182,6 +182,19 @@ message Actions {
optional bool manageConditions = 6;
}
+// WS api/qualitygates/search_users
+message SearchUsersResponse {
+ optional sonarqube.ws.commons.Paging paging = 1;
+ repeated User users = 2;
+
+ message User {
+ optional string login = 1;
+ optional string name = 2;
+ optional string avatar = 3;
+ optional bool selected = 4;
+ }
+}
+
// WS api/qualitygates/search_groups
message SearchGroupsResponse {
optional sonarqube.ws.commons.Paging paging = 1;