Browse Source

Fix case problem in routing.

Fix #5485
pull/5489/head
maliming 6 years ago
committed by GitHub
parent
commit
47014a8d3a
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      modules/identity/src/Volo.Abp.Identity.HttpApi/Volo/Abp/Identity/IdentityUserController.cs

4
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]

Loading…
Cancel
Save