*/
@RequestMapping(value = "/reviews/new", method = RequestMethod.POST)
public ModelAndView createCodeReview(@Valid @ModelAttribute TopicDto topicDto,
BindingResult result,
@RequestParam(BRANCH_ID) Long branchId) throws NotFoundException {
Branch branch = branchService.get(branchId);
if (result.hasErrors()) {
return new ModelAndView(CODE_REVIEW_VIEW)
.addObject(TOPIC_DTO, topicDto)
.addObject(BRANCH_ID, branchId)
.addObject(SUBMIT_URL, "/reviews/new?branchId=" + branchId)