Merge pull request #4582 from sbwalker/dev

remove reference to HttpContext as it is not used
This commit is contained in:
Shaun Walker
2024-09-02 11:08:38 -04:00
committed by GitHub
2 changed files with 1 additions and 4 deletions

View File

@ -474,6 +474,7 @@ namespace Oqtane.Managers
IdentityUser identityuser = await _identityUserManager.FindByNameAsync(user.Username);
if (identityuser != null && !string.IsNullOrEmpty(token))
{
// note that ResetPasswordAsync checks password complexity rules
var result = await _identityUserManager.ResetPasswordAsync(identityuser, token, user.Password);
if (result.Succeeded)
{