* @throws NotFoundException when branch was not found
*/
@RequestMapping(value = "/reviews/new", method = RequestMethod.GET)
public ModelAndView showNewCodeReviewPage(@RequestParam(BRANCH_ID) Long branchId) throws NotFoundException {
Branch branch = branchService.get(branchId);
Topic topic = new Topic();
topic.setBranch(branch);
TopicDto dto = new TopicDto(topic);
return new ModelAndView(CODE_REVIEW_VIEW)
.addObject(TOPIC_DTO, dto)
.addObject(BRANCH_ID, branchId)
.addObject(SUBMIT_URL, "/reviews/new?branchId=" + branchId)