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