MangerController initial check-in
parent
f7c0af3697
commit
c0c21fc31f
|
@ -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