diff --git a/aspnetcore/security/authentication/add-user-data.md b/aspnetcore/security/authentication/add-user-data.md index a706c20030..053cb69959 100644 --- a/aspnetcore/security/authentication/add-user-data.md +++ b/aspnetcore/security/authentication/add-user-data.md @@ -226,6 +226,9 @@ Test the app: ## Add claims to Identity using IUserClaimsPrincipalFactory +> [!NOTE] +> This section isn't an extension of the previous tutorial. To apply the following steps to the app built using the tutorial, see [this GitHub issue](https://github.com/dotnet/AspNetCore.Docs/issues/18797). + Additional claims can be added to ASP.NET Core Identity by using the `IUserClaimsPrincipalFactory` interface. This class can be added to the app in the `Startup.ConfigureServices` method. Add the custom implementation of the class as follows: ```csharp