Browse Source

Fix typo in FindByEmailAsync method name

pull/24929/head
Ma Liming 7 months ago
committed by GitHub
parent
commit
7780b9b558
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      modules/identity/src/Volo.Abp.Identity.AspNetCore/Volo/Abp/Identity/AspNetCore/AbpSignInManager.cs

2
modules/identity/src/Volo.Abp.Identity.AspNetCore/Volo/Abp/Identity/AspNetCore/AbpSignInManager.cs

@ -107,7 +107,7 @@ public class AbpSignInManager : SignInManager<IdentityUser>
return await SignInOrTwoFactorAsync(user, isPersistent, loginProvider, bypassTwoFactor);
}
public virtual async Task<IdentityUser> FindByEmaiAsync(string email)
public virtual async Task<IdentityUser> FindByEmailAsync(string email)
{
return await _identityUserManager.FindSharedUserByEmailAsync(email);
}

Loading…
Cancel
Save