Scale Pages

This commit is contained in:
Felix Kaspar
2023-05-31 21:39:40 +02:00
parent 005b158ad3
commit 6f5f031b24
8 changed files with 148 additions and 2 deletions

View File

@@ -115,6 +115,11 @@ public class OtherWebController {
return "other/multi-page-layout";
}
@GetMapping("/scale-pages")
@Hidden
public String scalePagesFrom(Model model) {
model.addAttribute("currentPage", "scale-pages");
return "other/scale-pages";
}
}