diff options
Diffstat (limited to 'Backend/Api/Api/Controllers/UserController.cs')
-rw-r--r-- | Backend/Api/Api/Controllers/UserController.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Backend/Api/Api/Controllers/UserController.cs b/Backend/Api/Api/Controllers/UserController.cs index 1bc395f..dd081cb 100644 --- a/Backend/Api/Api/Controllers/UserController.cs +++ b/Backend/Api/Api/Controllers/UserController.cs @@ -55,7 +55,7 @@ namespace Api.Controllers return Ok(rez); return BadRequest(); } - [HttpGet("{id}/profile")] + [HttpGet("{id}/id/profile")] [Authorize(Roles = "User")] public async Task<ActionResult<UserSend>> GetUserById(string id) { |