diff --git a/CHANGELOG.md b/CHANGELOG.md index ad6b96a..2b875fe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ ## Unreleased * New feature: It is now possible to configure EntraCP, to return only users that are members of some Entra groups, configured by the administrator - https://github.com/Yvand/EntraCP/pull/243 +* Fix the scope not set correctly if the tenant is hosted in a national cloud ## EntraCP v24.0.20240318.32 enhancements & bug-fixes - Published in March 18, 2024 diff --git a/Yvand.EntraCP/Yvand.EntraClaimsProvider/Configuration/EntraIDTenant.cs b/Yvand.EntraCP/Yvand.EntraClaimsProvider/Configuration/EntraIDTenant.cs index 3899ec3..7181268 100644 --- a/Yvand.EntraCP/Yvand.EntraClaimsProvider/Configuration/EntraIDTenant.cs +++ b/Yvand.EntraCP/Yvand.EntraClaimsProvider/Configuration/EntraIDTenant.cs @@ -119,6 +119,10 @@ public Guid ExtensionAttributesApplicationId set => _ExtensionAttributesApplicationId = value; } + /// + /// Gets or sets the Microsoft Entra ID endpoint to use to connect to the tenant. See https://learn.microsoft.com/en-us/graph/deployments for more information. + /// It is set to the Azure global service (https://login.microsoftonline.com) by default + /// public Uri AzureAuthority { get => new Uri(this._AzureAuthority);