Hi!
I'm playing around with the router dsl and its working great so far. However, I want to set up my Controller which handles thymeleaf too.
I got this GET Endpoint:
Copy code
@GetMapping("/")
fun index(model: Model): String {
model.addAttribute(....)
return "index"
}