diff --git a/aspnetcore/security/authentication/add-user-data.md b/aspnetcore/security/authentication/add-user-data.md index 8da88c1157..24914199c7 100644 --- a/aspnetcore/security/authentication/add-user-data.md +++ b/aspnetcore/security/authentication/add-user-data.md @@ -3,7 +3,7 @@ title: Add, download, and delete user data to Identity in an ASP.NET Core projec author: rick-anderson description: Learn how to add custom user data to Identity in an ASP.NET Core project. Delete data per GDPR. ms.author: riande -ms.date: 6/16/2018 +ms.date: 06/18/2019 ms.custom: "mvc, seodec18" uid: security/authentication/add-user-data --- @@ -14,11 +14,11 @@ By [Rick Anderson](https://twitter.com/RickAndMSFT) This article shows how to: * Add custom user data to an ASP.NET Core web app. -* Decorate the custom user data model with the [PersonalData](/dotnet/api/microsoft.aspnetcore.identity.personaldataattribute?view=aspnetcore-2.1) attribute so it's automatically available for download and deletion. Making the data able to be downloaded and deleted helps meet [GDPR](xref:security/gdpr) requirements. +* Decorate the custom user data model with the attribute so it's automatically available for download and deletion. Making the data able to be downloaded and deleted helps meet [GDPR](xref:security/gdpr) requirements. The project sample is created from a Razor Pages web app, but the instructions are similar for a ASP.NET Core MVC web app. -[View or download sample code](https://github.com/aspnet/AspNetCore.Docs/tree/live/aspnetcore/security/authentication/add-user-data) ([how to download](xref:index#how-to-download-a-sample)) +[View or download sample code](https://github.com/aspnet/AspNetCore.Docs/tree/master/aspnetcore/security/authentication/add-user-data) ([how to download](xref:index#how-to-download-a-sample)) ## Prerequisites @@ -28,7 +28,7 @@ The project sample is created from a Razor Pages web app, but the instructions a # [Visual Studio](#tab/visual-studio) -* From the Visual Studio **File** menu, select **New** > **Project**. Name the project **WebApp1** if you want to it match the namespace of the [download sample](https://github.com/aspnet/AspNetCore.Docs/tree/live/aspnetcore/security/authentication/add-user-data/sample) code. +* From the Visual Studio **File** menu, select **New** > **Project**. Name the project **WebApp1** if you want to it match the namespace of the [download sample](https://github.com/aspnet/AspNetCore.Docs/tree/live/aspnetcore/security/authentication/add-user-data) code. * Select **ASP.NET Core Web Application** > **OK** * Select **ASP.NET Core 2.2** in the dropdown * Select **Web Application** > **OK**