remove reference to HttpContext as it is not used

This commit is contained in:
sbwalker 2024-09-02 11:08:25 -04:00
parent 9620c5a98f
commit 8b1f95c743
2 changed files with 1 additions and 4 deletions

View File

@ -1,6 +1,5 @@
@namespace Oqtane.Themes.Controls
@using System.Net
@using Microsoft.AspNetCore.Http
@inherits ThemeControlBase
@inject ISettingService SettingService
@inject IStringLocalizer<Search> Localizer
@ -40,9 +39,6 @@
[Parameter]
public string SearchResultPagePath { get; set; } = "search"; // setting to "" will disable search
[CascadingParameter]
HttpContext HttpContext { get; set; }
[SupplyParameterFromForm(FormName = "SearchForm")]
public string KeyWords { get => ""; set => _keywords = value; }

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)
{