From e5d81ff9bacbba13a76ff43d63e246144f85c12f Mon Sep 17 00:00:00 2001 From: Kirk Larkin <6025110+serpent5@users.noreply.github.com> Date: Wed, 24 Jun 2020 23:56:52 +0100 Subject: [PATCH] Note that sub-topic isn't an extension of tutorial (#18947) --- aspnetcore/security/authentication/add-user-data.md | 3 +++ 1 file changed, 3 insertions(+) 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