auto split init

This commit is contained in:
Anthony Stirling
2023-07-15 11:39:10 +01:00
committed by systo Anthony Stirling
parent ddf5915c6a
commit 6e32c7fe85
7 changed files with 179 additions and 1 deletions

View File

@@ -143,4 +143,12 @@ public class GeneralWebController {
model.addAttribute("currentPage", "crop");
return "crop";
}
@GetMapping("/auto-split-pdf")
@Hidden
public String autoSPlitPDFForm(Model model) {
model.addAttribute("currentPage", "auto-split-pdf");
return "auto-split-pdf";
}
}