From 9bdd9d1f289d2a089713a5cb80521d08493aafaa Mon Sep 17 00:00:00 2001 From: cKey <35512826+colinin@users.noreply.github.com> Date: Thu, 18 Nov 2021 14:07:28 +0800 Subject: [PATCH] fix(profile): fixed unexpected prefix routing addresses --- .../LINGYUN/Abp/Identity/MyProfileController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnet-core/modules/identity/LINGYUN.Abp.Identity.HttpApi/LINGYUN/Abp/Identity/MyProfileController.cs b/aspnet-core/modules/identity/LINGYUN.Abp.Identity.HttpApi/LINGYUN/Abp/Identity/MyProfileController.cs index 1b6afe8e4..5a5f39388 100644 --- a/aspnet-core/modules/identity/LINGYUN.Abp.Identity.HttpApi/LINGYUN/Abp/Identity/MyProfileController.cs +++ b/aspnet-core/modules/identity/LINGYUN.Abp.Identity.HttpApi/LINGYUN/Abp/Identity/MyProfileController.cs @@ -21,7 +21,7 @@ namespace LINGYUN.Abp.Identity } [HttpPut] - [Route("/claims")] + [Route("claims")] public virtual async Task SetClaimAsync(IdentityUserClaimSetDto input) { await MyProfileAppService.SetClaimAsync(input);