*/
@RequestMapping(value = "/reviews/{reviewId}/json", method = RequestMethod.GET)
@ResponseBody
public JsonResponse getCodeReview(@PathVariable("reviewId") Long reviewId) throws NotFoundException {
CodeReview review = codeReviewService.get(reviewId);
return new JsonResponse(JsonResponseStatus.SUCCESS, new CodeReviewDto(review));
}