Skip to content

Commit

Permalink
Merged in SHIBUI-646 (pull request #178)
Browse files Browse the repository at this point in the history
SHIBUI-646: Proper index.html redirect

Approved-by: Shibui Jenkins <shibui.jenkins@gmail.com>
  • Loading branch information
dima767 authored and Jonathan Johnson committed Aug 27, 2018
2 parents b71bddd + 4090d2a commit 4e5e8a3
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
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";
}
}
2 changes: 1 addition & 1 deletion backend/src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@

# Logging Configuration
#logging.config=classpath:log4j2.xml
#logging.level.org.springframework.web=ERROR

logging.level.org.springframework=INFO
logging.level.edu.internet2.tier.shibboleth.admin.ui=INFO

# Database Credentials
Expand Down

0 comments on commit 4e5e8a3

Please sign in to comment.