diff --git a/Changelog.md b/Changelog.md index 416fb33..bfd4a9e 100644 --- a/Changelog.md +++ b/Changelog.md @@ -2,6 +2,10 @@ [Readme](https://github.com/damienbod/IdentityServer4AspNetCoreIdentityTemplate/blob/master/README.md) +2018-09-27 1.0.10 +- resetPassword => ConfirmEmail fix +- Updating packages + 2018-09-27 1.0.9 - added Serilog - clean up STS Configuration model diff --git a/content/IdentityServer4AspNetCoreIdentityTemplate.nuspec b/content/IdentityServer4AspNetCoreIdentityTemplate.nuspec index 07a42c2..076f340 100644 --- a/content/IdentityServer4AspNetCoreIdentityTemplate.nuspec +++ b/content/IdentityServer4AspNetCoreIdentityTemplate.nuspec @@ -2,7 +2,7 @@ IdentityServer4AspNetCoreIdentityTemplate - 1.0.9 + 1.0.10 IdentityServer4.Identity.Template Creates an ASP.NET Core STS application using IdentityServer4 and Identity with localisation, TOTP, personal data, Bootstrap 4 diff --git a/content/StsServerIdentity/Controllers/ManageController.cs b/content/StsServerIdentity/Controllers/ManageController.cs index a62dc3f..f7bd06f 100644 --- a/content/StsServerIdentity/Controllers/ManageController.cs +++ b/content/StsServerIdentity/Controllers/ManageController.cs @@ -133,7 +133,7 @@ public async Task SendVerificationEmail(IndexViewModel model) var code = await _userManager.GenerateEmailConfirmationTokenAsync(user); - var callbackUrl = Url.Action("ResetPassword", "Account", new { userId = user.Id, code = code }, protocol: HttpContext.Request.Scheme); + var callbackUrl = Url.Action("ConfirmEmail", "Account", new { userId = user.Id, code = code }, protocol: HttpContext.Request.Scheme); await _emailSender.SendEmail( model.Email, "StsServerIdentity Verification Email", diff --git a/content/StsServerIdentity/StsServerIdentity.csproj b/content/StsServerIdentity/StsServerIdentity.csproj index fc01199..f53a97a 100644 --- a/content/StsServerIdentity/StsServerIdentity.csproj +++ b/content/StsServerIdentity/StsServerIdentity.csproj @@ -4,20 +4,20 @@ - + - + all runtime; build; native; contentfiles; analyzers - + - +