fix redirect for dashboard page

This commit is contained in:
2023-03-16 17:53:23 +01:00
parent 0bc58ba166
commit 2b82a6822c

View File

@@ -88,6 +88,8 @@ public class WebConfiguration implements WebMvcConfigurer, HardcodedValues, Prop
registry.addViewController("/").setViewName("forward:/index.html");
registry.addViewController("/vis").setViewName("forward:/index.html");
registry.addViewController("/dashboard").setViewName("forward:/index.html");
registry.addViewController("/dashboard/**").setViewName("forward:/index.html");
registry.addViewController("/upload").setViewName("forward:/index.html");
registry.addViewController("/help").setViewName("forward:/index.html");
}