-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
AccessToken security group retrieval strategy.
- Loading branch information
1 parent
ee6d439
commit a3038d8
Showing
6 changed files
with
58 additions
and
12 deletions.
There are no files selected for viewing
13 changes: 13 additions & 0 deletions
13
src/dotnet/Common/Constants/Authentication/EntraUserClaimConstants.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
namespace FoundationaLLM.Common.Constants.Authentication | ||
{ | ||
/// <summary> | ||
/// Additional claim constants that are not included in <see cref="Microsoft.Identity.Web.ClaimConstants"></see>. | ||
/// </summary> | ||
public static class EntraUserClaimConstants | ||
{ | ||
/// <summary> | ||
/// Groups claim. | ||
/// </summary> | ||
public const string Groups = "groups"; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters