This commit is contained in:
Anthony Stirling
2023-07-30 21:56:09 +01:00
parent 52a7885f3c
commit 0da9c62ef8
3 changed files with 592 additions and 123 deletions

View File

@@ -52,4 +52,11 @@ public class SecurityWebController {
model.addAttribute("currentPage", "sanitize-pdf");
return "security/sanitize-pdf";
}
@GetMapping("/get-info-on-pdf")
@Hidden
public String getInfo(Model model) {
model.addAttribute("currentPage", "get-info-on-pdf");
return "security/get-info-on-pdf";
}
}