This commit is contained in:
Anthony Stirling
2023-04-30 00:48:01 +01:00
parent 6b0fedfabf
commit 585bf4ccb4
7 changed files with 114 additions and 94 deletions

View File

@@ -14,11 +14,11 @@ public class GeneralWebController {
model.addAttribute("currentPage", "merge-pdfs");
return "merge-pdfs";
}
@GetMapping("/game")
@GetMapping("/about")
@Hidden
public String gameForm(Model model) {
model.addAttribute("currentPage", "game");
return "game";
model.addAttribute("currentPage", "about");
return "about";
}
@GetMapping("/multi-tool")