Browse Source

Merge pull request #392 from colinin/4.4.2

fix(profile): fixed unexpected prefix routing addresses
pull/396/head
yx lin 4 years ago
committed by GitHub
parent
commit
c3d91c6f7b
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      aspnet-core/modules/identity/LINGYUN.Abp.Identity.HttpApi/LINGYUN/Abp/Identity/MyProfileController.cs

2
aspnet-core/modules/identity/LINGYUN.Abp.Identity.HttpApi/LINGYUN/Abp/Identity/MyProfileController.cs

@ -21,7 +21,7 @@ namespace LINGYUN.Abp.Identity
} }
[HttpPut] [HttpPut]
[Route("/claims")] [Route("claims")]
public virtual async Task SetClaimAsync(IdentityUserClaimSetDto input) public virtual async Task SetClaimAsync(IdentityUserClaimSetDto input)
{ {
await MyProfileAppService.SetClaimAsync(input); await MyProfileAppService.SetClaimAsync(input);

Loading…
Cancel
Save