Michael Jett
13 years ago
1 changed files with 17 additions and 0 deletions
@ -0,0 +1,17 @@
|
||||
package org.mitre.openid.connect.web; |
||||
|
||||
import org.springframework.stereotype.Controller; |
||||
import org.springframework.web.bind.annotation.RequestMapping; |
||||
|
||||
/** |
||||
* @author Michael Jett <mjett@mitre.org> |
||||
*/ |
||||
|
||||
@Controller |
||||
public class MangerController { |
||||
|
||||
@RequestMapping({"/", "/home", "/index"}) |
||||
public String showHomePage() { |
||||
return "home"; |
||||
} |
||||
} |
Loading…
Reference in new issue