From 0012a038001abe85fbbea4b87cd4248aaf6616fe Mon Sep 17 00:00:00 2001 From: damienbod Date: Wed, 10 Oct 2018 16:46:17 +0200 Subject: [PATCH 1/3] updating packages --- content/StsServerIdentity/StsServerIdentity.csproj | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 - + - + From 574469a6f90c9979e16e84c8aad6a40bcddb12dd Mon Sep 17 00:00:00 2001 From: damienbod Date: Wed, 10 Oct 2018 16:50:07 +0200 Subject: [PATCH 2/3] fix email return url --- content/StsServerIdentity/Controllers/ManageController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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", From 6cdab73fcefd3eaf6414600b4e627388c2abbc82 Mon Sep 17 00:00:00 2001 From: damienbod Date: Wed, 10 Oct 2018 16:53:23 +0200 Subject: [PATCH 3/3] Updating template version --- Changelog.md | 4 ++++ content/IdentityServer4AspNetCoreIdentityTemplate.nuspec | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) 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