aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-ws
diff options
context:
space:
mode:
authorDuarte Meneses <duarte.meneses@sonarsource.com>2020-06-26 14:26:45 -0500
committersonartech <sonartech@sonarsource.com>2020-07-01 20:05:53 +0000
commit6a484e1fa93750d8782932df00df3d24b5ee32c9 (patch)
tree7fadd813193906a6e6f797b686699813fec1a437 /sonar-ws
parentdb6fdba06563d8e5cb39ddaabec976f2db6a1448 (diff)
downloadsonarqube-6a484e1fa93750d8782932df00df3d24b5ee32c9.tar.gz
sonarqube-6a484e1fa93750d8782932df00df3d24b5ee32c9.zip
SONAR-13475 SONAR-13473 SONAR-13474 Don't restrict to GHE
Diffstat (limited to 'sonar-ws')
-rw-r--r--sonar-ws/src/main/protobuf/ws-alm_integrations.proto16
1 files changed, 8 insertions, 8 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-alm_integrations.proto b/sonar-ws/src/main/protobuf/ws-alm_integrations.proto
index d2f81d8d1ef..12df67c631f 100644
--- a/sonar-ws/src/main/protobuf/ws-alm_integrations.proto
+++ b/sonar-ws/src/main/protobuf/ws-alm_integrations.proto
@@ -55,24 +55,24 @@ message GithubClientIdWsResponse {
optional string clientId = 1;
}
-// WS api/alm_integrations/list_github_enterprise_organizations
-message ListGithubEnterpriseOrganizationsWsResponse {
+// WS api/alm_integrations/list_github_organizations
+message ListGithubOrganizationsWsResponse {
optional sonarqube.ws.commons.Paging paging = 1;
- repeated GithubEnterpriseOrganization organizations = 2;
+ repeated GithubOrganization organizations = 2;
}
-message GithubEnterpriseOrganization {
+message GithubOrganization {
optional string key = 1;
optional string name = 2;
}
-// WS api/alm_integrations/list_github_enterprise_repositories
-message ListGithubEnterpriseRepositoriesWsResponse {
+// WS api/alm_integrations/list_github_repositories
+message ListGithubRepositoriesWsResponse {
optional sonarqube.ws.commons.Paging paging = 1;
- repeated GithubEnterpriseRepository repositories = 2;
+ repeated GithubRepository repositories = 2;
}
-message GithubEnterpriseRepository {
+message GithubRepository {
optional int64 id = 1;
optional string key = 2;
optional string name = 3;