This commit is contained in:
Anthony Stirling
2023-05-06 12:36:31 +01:00
parent 3c47f21337
commit 5dfe8a83cd
7 changed files with 104 additions and 1 deletions

View File

@@ -88,5 +88,11 @@ public class OtherWebController {
return "other/adjust-contrast";
}
@GetMapping("/repair")
@Hidden
public String repairForm(Model model) {
model.addAttribute("currentPage", "repair");
return "other/repair";
}
}