WIP: No errors but nothing is working

This commit is contained in:
Dimitrios Kaitantzidis
2023-10-22 20:16:59 +03:00
parent 99b0150e7a
commit 14a90f5e50
12 changed files with 13254 additions and 4 deletions

View File

@@ -81,6 +81,13 @@ public class GeneralWebController {
model.addAttribute("currentPage", "view-pdf");
return "view-pdf";
}
@GetMapping("/viewer")
@Hidden
public String ViewForm(Model model) {
model.addAttribute("currentPage", "viewer");
return "viewer";
}
@GetMapping("/multi-tool")
@Hidden