diff options
Diffstat (limited to 'sonar-ws/src/main/protobuf/ws-hotspots.proto')
-rw-r--r-- | sonar-ws/src/main/protobuf/ws-hotspots.proto | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-hotspots.proto b/sonar-ws/src/main/protobuf/ws-hotspots.proto index 58fcfc367f8..ef4721c44dd 100644 --- a/sonar-ws/src/main/protobuf/ws-hotspots.proto +++ b/sonar-ws/src/main/protobuf/ws-hotspots.proto @@ -53,6 +53,12 @@ message SearchWsResponse { } } +// Response of GET api/hotspots/list +message ListWsResponse { + optional sonarqube.ws.commons.Paging paging = 1; + repeated SearchWsResponse.Hotspot hotspots = 2; +} + // Response of GET api/hotspots/show message ShowWsResponse { optional string key = 1; |