I want to change the password requirements for my registration form but I cant find the PasswordValidator property in the UserManager class.
I'm using AspNet.Identity.EntityFramework 3.0.0-beta5
private readonly UserManager<AppUser> _userManager;
private readonly SignInManager<AppUser> _signInManager;
public AccountController(UserManager<AppUser> userManager, SignInManager<AppUser> signInManager)
{
_userManager = userManager;
_signInManager = signInManager;
// UserManager does not contain a definition for PasswordValidator
//_userManager.PasswordValidator
}
(For comparison, in Microsoft ASP.NET Identity 2.0, documentation for UserManager<TUser, TKey>.PasswordValidator
is here.)