Skip to content

Commit

Permalink
add comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Yvand committed Apr 11, 2024
1 parent eb50d9c commit 92f079b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,10 @@ public Guid ExtensionAttributesApplicationId
set => _ExtensionAttributesApplicationId = value;
}

/// <summary>
/// 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
/// </summary>
public Uri AzureAuthority
{
get => new Uri(this._AzureAuthority);
Expand Down

0 comments on commit 92f079b

Please sign in to comment.