maliming
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
2 deletions
-
modules/identity/src/Volo.Abp.Identity.HttpApi/Volo/Abp/Identity/IdentityUserController.cs
|
|
|
@ -75,9 +75,9 @@ namespace Volo.Abp.Identity |
|
|
|
|
|
|
|
[HttpGet] |
|
|
|
[Route("by-username/{userName}")] |
|
|
|
public virtual Task<IdentityUserDto> FindByUsernameAsync(string username) |
|
|
|
public virtual Task<IdentityUserDto> FindByUsernameAsync(string userName) |
|
|
|
{ |
|
|
|
return UserAppService.FindByUsernameAsync(username); |
|
|
|
return UserAppService.FindByUsernameAsync(userName); |
|
|
|
} |
|
|
|
|
|
|
|
[HttpGet] |
|
|
|
|