17 lines
885 B
C#
17 lines
885 B
C#
using FluentValidation;
|
|
using Nop.Core.Domain.Customers;
|
|
using Nop.Services.Localization;
|
|
using Nop.Web.Framework.Validators;
|
|
using Nop.Web.Models.Customer;
|
|
|
|
namespace Nop.Web.Validators.Customer;
|
|
|
|
public partial class PasswordRecoveryConfirmValidator : BaseNopValidator<PasswordRecoveryConfirmModel>
|
|
{
|
|
public PasswordRecoveryConfirmValidator(ILocalizationService localizationService, CustomerSettings customerSettings)
|
|
{
|
|
RuleFor(x => x.NewPassword).IsPassword(localizationService, customerSettings);
|
|
RuleFor(x => x.ConfirmNewPassword).NotEmpty().WithMessageAwait(localizationService.GetResourceAsync("Account.PasswordRecovery.ConfirmNewPassword.Required"));
|
|
RuleFor(x => x.ConfirmNewPassword).Equal(x => x.NewPassword).WithMessageAwait(localizationService.GetResourceAsync("Account.PasswordRecovery.NewPassword.EnteredPasswordsDoNotMatch"));
|
|
}
|
|
} |