Add chips to channel page

This commit is contained in:
2026-01-06 15:51:06 +01:00
parent bbe1b51aa5
commit bce24514dc
2 changed files with 29 additions and 2 deletions

View File

@@ -70,8 +70,9 @@ public class ViewController {
}
@org.springframework.web.bind.annotation.GetMapping("/channels")
public String channelDirectory() {
public String channelDirectory(Model model) {
LOG.info("Rendering channel directory");
addVersionAttributes(model);
return "channels";
}