Browse Source
Fix typo in FindByEmailAsync method name
pull/24929/head
Ma Liming
7 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
1 additions and
1 deletions
-
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); |
|
|
|
} |
|
|
|
|