mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-21 09:08:53 +01:00
Support sovereign/custom clouds in microsoft authentication provider (#178725)
This commit is contained in:
committed by
GitHub
parent
d74f53ef2a
commit
f9d14d68fb
12
extensions/microsoft-authentication/src/UriEventHandler.ts
Normal file
12
extensions/microsoft-authentication/src/UriEventHandler.ts
Normal file
@@ -0,0 +1,12 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
|
||||
import * as vscode from 'vscode';
|
||||
|
||||
export class UriEventHandler extends vscode.EventEmitter<vscode.Uri> implements vscode.UriHandler {
|
||||
public handleUri(uri: vscode.Uri) {
|
||||
this.fire(uri);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user