Skip to content

Commit

Permalink
Shows Azure rich integration status in remotes, lets connect/disconnect
Browse files Browse the repository at this point in the history
  • Loading branch information
sergeibbb committed Jan 27, 2025
1 parent 0d908ed commit 2e58f76
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/plus/integrations/integrationService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -668,10 +668,10 @@ export class IntegrationService implements Disposable {

switch (remote.provider.id) {
// TODO: Uncomment when we support these integrations
// case 'azure-devops':
// return get(HostingIntegrationId.AzureDevOps) as RT;
// case 'bitbucket':
// return get(HostingIntegrationId.Bitbucket) as RT;
case 'azure-devops':
return get(HostingIntegrationId.AzureDevOps) as RT;
case 'github':
if (remote.provider.domain != null && !isGitHubDotCom(remote.provider.domain)) {
return get(
Expand Down Expand Up @@ -1030,10 +1030,10 @@ export function remoteProviderIdToIntegrationId(
): SupportedCloudIntegrationIds | undefined {
switch (remoteProviderId) {
// TODO: Uncomment when we support these integrations
// case 'azure-devops':
// return HostingIntegrationId.AzureDevOps;
// case 'bitbucket':
// return HostingIntegrationId.Bitbucket;
case 'azure-devops':
return HostingIntegrationId.AzureDevOps;
case 'github':
return HostingIntegrationId.GitHub;
case 'gitlab':
Expand Down

0 comments on commit 2e58f76

Please sign in to comment.