remove blanks

This commit is contained in:
Anthony Stirling
2023-05-08 12:18:48 +01:00
parent cc919ea614
commit 0b1cdf6a68
5 changed files with 116 additions and 35 deletions

View File

@@ -95,4 +95,11 @@ public class OtherWebController {
return "other/repair";
}
@GetMapping("/remove-blanks")
@Hidden
public String removeBlanksForm(Model model) {
model.addAttribute("currentPage", "remove-blanks");
return "other/remove-blanks";
}
}