File tree Expand file tree Collapse file tree 3 files changed +4
-8
lines changed
integrations/authentication Expand file tree Collapse file tree 3 files changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -567,7 +567,8 @@ export class FocusIndicator implements Disposable {
567
567
const github = await this . container . integrations ?. get ( HostingIntegrationId . GitHub ) ;
568
568
if ( github == null ) break ;
569
569
if ( ! ( github . maybeConnected ?? ( await github . isConnected ( ) ) ) ) {
570
- await this . container . integrations . manageCloudIntegrations (
570
+ // TODO: Add back in once we switch GitHub to use the cloud
571
+ /* await this.container.integrations.manageCloudIntegrations(
571
572
{ integrationId: HostingIntegrationId.GitHub },
572
573
{
573
574
source: 'launchpad-indicator',
@@ -576,7 +577,7 @@ export class FocusIndicator implements Disposable {
576
577
integration: HostingIntegrationId.GitHub,
577
578
},
578
579
},
579
- ) ;
580
+ ); */
580
581
void github . connect ( ) ;
581
582
}
582
583
break ;
Original file line number Diff line number Diff line change @@ -436,11 +436,6 @@ export class IntegrationAuthenticationService implements Disposable {
436
436
await import ( /* webpackChunkName: "integrations" */ './bitbucket' )
437
437
) . BitbucketAuthenticationProvider ( this . container ) ;
438
438
break ;
439
- case HostingIntegrationId . GitHub :
440
- provider = new (
441
- await import ( /* webpackChunkName: "integrations" */ './github' )
442
- ) . GitHubAuthenticationProvider ( this . container ) ;
443
- break ;
444
439
case SelfHostedIntegrationId . GitHubEnterprise :
445
440
provider = new (
446
441
await import ( /* webpackChunkName: "integrations" */ './github' )
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ export type CloudIntegrationAuthType = 'oauth' | 'pat';
30
30
31
31
export const CloudIntegrationAuthenticationUriPathPrefix = 'did-authenticate-cloud-integration' ;
32
32
33
- export const supportedCloudIntegrationIds = [ IssueIntegrationId . Jira , HostingIntegrationId . GitHub ] ;
33
+ export const supportedCloudIntegrationIds = [ IssueIntegrationId . Jira ] ;
34
34
export type SupportedCloudIntegrationIds = ( typeof supportedCloudIntegrationIds ) [ number ] ;
35
35
36
36
export function isSupportedCloudIntegrationId ( id : string ) : id is SupportedCloudIntegrationIds {
You can’t perform that action at this time.
0 commit comments