diff options
author | Julien Camus <julien.camus@sonarsource.com> | 2024-12-10 16:00:22 +0100 |
---|---|---|
committer | Steve Marion <steve.marion@sonarsource.com> | 2024-12-18 11:13:21 +0100 |
commit | 48d5ec5040eccf6e7638170135426f247807a585 (patch) | |
tree | bee1e1787e6f33e43e3f7bdbdd584bf000b47b61 /sonar-ws | |
parent | d639a965bce7acafb004906cd07a8f0b5f7af993 (diff) | |
download | sonarqube-48d5ec5040eccf6e7638170135426f247807a585.tar.gz sonarqube-48d5ec5040eccf6e7638170135426f247807a585.zip |
SONAR-23845 Add pagination to SearchBitbucketServerReposAction
Diffstat (limited to 'sonar-ws')
-rw-r--r-- | sonar-ws/src/main/protobuf/ws-alm_integrations.proto | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-alm_integrations.proto b/sonar-ws/src/main/protobuf/ws-alm_integrations.proto index c26f51d9a9f..590d0ce841f 100644 --- a/sonar-ws/src/main/protobuf/ws-alm_integrations.proto +++ b/sonar-ws/src/main/protobuf/ws-alm_integrations.proto @@ -28,8 +28,10 @@ option optimize_for = SPEED; // WS api/alm_integrations/search_bitbucketserver_repos message SearchBitbucketserverReposWsResponse { - optional bool isLastPage = 1; - repeated BBSRepo repositories = 2; + optional sonarqube.ws.commons.Paging paging = 1; + optional bool isLastPage = 2; + optional int32 nextPageStart = 3; + repeated BBSRepo repositories = 4; } // WS api/alm_integrations/search_bitbucketcloud_repos @@ -63,6 +65,7 @@ message BBSRepo { optional string name = 3; optional string sqProjectKey = 4; optional string projectKey = 5; + optional string projectName = 6; } message BBCRepo { |