Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/extensions/microsoft-authentication/src/common/config.ts
3320 views
1
/*---------------------------------------------------------------------------------------------
2
* Copyright (c) Microsoft Corporation. All rights reserved.
3
* Licensed under the MIT License. See License.txt in the project root for license information.
4
*--------------------------------------------------------------------------------------------*/
5
6
7
export interface IConfig {
8
// The macOS broker redirect URI which is dependent on the bundle identifier of the signed app.
9
// Other platforms do not require a redirect URI to be set. For unsigned apps, the unsigned
10
// format can be used.
11
// Example formats:
12
// msauth.com.msauth.unsignedapp://auth or msauth.<bundleId>://auth
13
macOSBrokerRedirectUri: string;
14
}
15
16
export const Config: IConfig = {
17
// This is replaced in the build with the correct bundle id for that distro.
18
macOSBrokerRedirectUri: 'msauth.com.msauth.unsignedapp://auth'
19
};
20
21