From 029e98315813bf42740329c63f6b54c72044fe92 Mon Sep 17 00:00:00 2001 From: Zipeng WU Date: Wed, 13 Oct 2021 16:35:52 +0200 Subject: SONAR-15514 Create api/qualitygates/search_users service --- sonar-ws/src/main/protobuf/ws-qualitygates.proto | 13 +++++++++++++ 1 file changed, 13 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 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; -- cgit v1.2.3