Now requiring homepage login

pull/67/merge
Michael Jett 2012-05-08 14:09:24 -04:00
parent 7dd81ac2de
commit c8e3f70115
1 changed files with 1 additions and 0 deletions

View File

@ -27,6 +27,7 @@ import org.springframework.web.bind.annotation.RequestMapping;
@RequestMapping("/")
public class ManagerController {
@PreAuthorize("hasRole('ROLE_USER')")
@RequestMapping({"", "/home", "/index"})
public String showHomePage() {
return "home";