Skip to content

Commit 7365a7c

Browse files
committed
Shows Azure rich integration status in remotes, lets connect/disconnect
(#3976)
1 parent 03d8634 commit 7365a7c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/plus/integrations/integrationService.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -669,10 +669,10 @@ export class IntegrationService implements Disposable {
669669

670670
switch (remote.provider.id) {
671671
// TODO: Uncomment when we support these integrations
672-
// case 'azure-devops':
673-
// return get(HostingIntegrationId.AzureDevOps) as RT;
674672
// case 'bitbucket':
675673
// return get(HostingIntegrationId.Bitbucket) as RT;
674+
case 'azure-devops':
675+
return get(HostingIntegrationId.AzureDevOps) as RT;
676676
case 'github':
677677
if (remote.provider.domain != null && !isGitHubDotCom(remote.provider.domain)) {
678678
return get(
@@ -1042,10 +1042,10 @@ export function remoteProviderIdToIntegrationId(
10421042
): SupportedCloudIntegrationIds | undefined {
10431043
switch (remoteProviderId) {
10441044
// TODO: Uncomment when we support these integrations
1045-
// case 'azure-devops':
1046-
// return HostingIntegrationId.AzureDevOps;
10471045
// case 'bitbucket':
10481046
// return HostingIntegrationId.Bitbucket;
1047+
case 'azure-devops':
1048+
return HostingIntegrationId.AzureDevOps;
10491049
case 'github':
10501050
return HostingIntegrationId.GitHub;
10511051
case 'gitlab':

0 commit comments

Comments
 (0)