Added '/' path to tool. Added .js file for history management

This commit is contained in:
2021-02-09 16:51:24 +01:00
parent a71c36e40a
commit 007917fdbd
4 changed files with 5 additions and 7 deletions

View File

@@ -28,7 +28,7 @@ public class MockController {
* @return
*/
@SneakyThrows
@GetMapping("/mock")
@GetMapping({"/","/mock"})
public String showHome(){
return "mock";
}