Adjusting the home page (#442)

* Add workflow bpmn file preview support

* Adjusting the home page
This commit is contained in:
kl
2023-03-14 14:54:40 +08:00
committed by GitHub
parent 4962b8b3ca
commit ca9eefb80b
6 changed files with 444 additions and 423 deletions

View File

@ -13,21 +13,23 @@ public class IndexController {
@GetMapping( "/index")
public String go2Index(){
return "index";
return "/main/index";
}
@GetMapping( "/record")
public String go2Record(){
return "record";
return "/main/record";
}
@GetMapping( "/comment")
public String go2Comment(){
return "comment";
@GetMapping( "/integrated")
public String go2Integrated(){
return "/main/integrated";
}
@GetMapping( "/")
public String root() {
return "redirect:/index";
return "redirect:/main/index";
}
}