feat: add remove annotations

This commit is contained in:
sbplat
2023-12-23 13:47:21 -05:00
parent 24568f4a42
commit b7d6107a2d
7 changed files with 91 additions and 2 deletions

View File

@@ -126,7 +126,13 @@ public class OtherWebController {
model.addAttribute("currentPage", "remove-blanks");
return "misc/remove-blanks";
}
@GetMapping("/remove-annotations")
@Hidden
public String removeAnnotationsForm(Model model) {
model.addAttribute("currentPage", "remove-annotations");
return "misc/remove-annotations";
}
@GetMapping("/auto-crop")
@Hidden