diff options
author | Daniel Schwarz <daniel.schwarz@sonarsource.com> | 2017-04-21 16:26:23 +0200 |
---|---|---|
committer | Daniel Schwarz <bartfastiel@users.noreply.github.com> | 2017-04-24 11:45:27 +0200 |
commit | 0f1b6de6d557cf3a3ee6c37f4b569455bca20f4c (patch) | |
tree | acdec6531fe0085aa4278b4ac9e6cb2ca4f28e15 /sonar-ws | |
parent | 70c5d0b38896e0d431d8d687d397f7e17919cef9 (diff) | |
download | sonarqube-0f1b6de6d557cf3a3ee6c37f4b569455bca20f4c.tar.gz sonarqube-0f1b6de6d557cf3a3ee6c37f4b569455bca20f4c.zip |
apply conventions for pagination to api/projects/provisioned
Diffstat (limited to 'sonar-ws')
-rw-r--r-- | sonar-ws/src/main/protobuf/ws-components.proto | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-components.proto b/sonar-ws/src/main/protobuf/ws-components.proto index 27a36617708..5b0445288b9 100644 --- a/sonar-ws/src/main/protobuf/ws-components.proto +++ b/sonar-ws/src/main/protobuf/ws-components.proto @@ -89,10 +89,8 @@ message SearchProjectsWsResponse { // WS api/components/provisioned message ProvisionedWsResponse { - repeated Component projects = 1; - optional int64 total = 2; - optional int32 p = 3; - optional int64 ps = 4; + optional sonarqube.ws.commons.Paging paging = 1; + repeated Component projects = 2; message Component { optional string uuid = 1; |