Skip to content

Commit

Permalink
SHIBUI-646: Proper index.html redirect
Browse files Browse the repository at this point in the history
  • Loading branch information
dima767 committed Aug 23, 2018
1 parent a68bcf6 commit a83a99d
Showing 1 changed file with 13 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
package edu.internet2.tier.shibboleth.admin.ui.controller;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;

@Controller
public class RootUiViewController {

@RequestMapping("/")
public String index() {
return "redirect:/index.html";
}
}

0 comments on commit a83a99d

Please sign in to comment.