diff options
author | Zipeng WU <zipeng.wu@sonarsource.com> | 2021-10-13 16:35:52 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2021-10-22 20:03:27 +0000 |
commit | 029e98315813bf42740329c63f6b54c72044fe92 (patch) | |
tree | edb4a14fc000a499643252492ac42c8fcde91991 /sonar-ws | |
parent | dd6441108cb87bb35bd6247c160736a9b2835c5a (diff) | |
download | sonarqube-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.proto | 13 |
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; |