Split by sections #506

This commit is contained in:
Anthony Stirling
2023-12-16 19:29:43 +00:00
parent 12dccab460
commit c28a40ffe8
8 changed files with 233 additions and 4 deletions

View File

@@ -74,6 +74,13 @@ public class GeneralWebController {
model.addAttribute("currentPage", "merge-pdfs");
return "merge-pdfs";
}
@GetMapping("/split-pdf-by-sections")
@Hidden
public String splitPdfBySections(Model model) {
model.addAttribute("currentPage", "split-pdf-by-sections");
return "split-pdf-by-sections";
}
@GetMapping("/view-pdf")
@Hidden