damienbod / IdentityServer4AspNetCoreIdentityTemplate

An ASP.NET Core 6.0 IdentityServer4 Identity Bootstrap 4 template with localization

Home Page:https://www.nuget.org/packages/IdentityServer4AspNetCoreIdentityTemplate/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Verifyemail sends resetpassword link

ldholmgren opened this issue · comments

Accountcontroller.cs -> SendVerificationEmail(...)

var callbackUrl = Url.Action("ResetPassword", "Account", new { userId = user.Id, code = code }, protocol: HttpContext.Request.Scheme);

Should be:
var callbackUrl = Url.Action("ConfirmEmail", "Account", new { userId = user.Id, code = code }, protocol: HttpContext.Request.Scheme);

released v1.0.10