aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Web/Controllers/UserController.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/DevHive.Web/Controllers/UserController.cs')
-rw-r--r--src/DevHive.Web/Controllers/UserController.cs14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/DevHive.Web/Controllers/UserController.cs b/src/DevHive.Web/Controllers/UserController.cs
index 7121ac8..fbbbbff 100644
--- a/src/DevHive.Web/Controllers/UserController.cs
+++ b/src/DevHive.Web/Controllers/UserController.cs
@@ -96,20 +96,6 @@ namespace DevHive.Web.Controllers
return new AcceptedResult("UpdateUser", userWebModel);
}
-
- [HttpPatch]
- public async Task<IActionResult> Patch(Guid id, [FromBody] List<Patch> patch, [FromHeader] string authorization)
- {
- if (!await this._userService.ValidJWT(id, authorization))
- return new UnauthorizedResult();
-
- UserServiceModel userServiceModel = await this._userService.PatchUser(id, patch);
-
- if (userServiceModel == null)
- return new BadRequestObjectResult("Wrong patch properties");
- else
- return new OkObjectResult(this._userMapper.Map<UserWebModel>(userServiceModel));
- }
#endregion
#region Delete