return "/movies/list";
}
@RequestMapping(value = "/actors/{id}", method = RequestMethod.GET, headers = "Accept=text/html")
public String singleActorView(Model model, @PathVariable String id) {
Person person = cineastsRepository.getPerson(id);
model.addAttribute("actor", person);
model.addAttribute("id", id);
model.addAttribute("roles", IteratorUtil.asCollection(person.getRoles()));
addUser(model);
return "/actors/show";
}