public ActionResult UnpinUser(int userId) { if (repository.UnpinUser(userId)) { return(NoContent()); } return(NotFound()); }