Update MvcConfig.java

- Added licenses to mvcconfig
This commit is contained in:
Max W. 2024-03-06 23:40:42 +01:00
parent ea79b1d564
commit b1e60486c4

View File

@ -15,6 +15,7 @@ public class MvcConfig implements WebMvcConfigurer {
registry.addViewController("/download").setViewName("forward:/index.html"); registry.addViewController("/download").setViewName("forward:/index.html");
registry.addViewController("/upload").setViewName("forward:/index.html"); registry.addViewController("/upload").setViewName("forward:/index.html");
registry.addViewController("/credits").setViewName("forward:/index.html"); registry.addViewController("/credits").setViewName("forward:/index.html");
registry.addViewController("/licenses").setViewName("forward:/index.html");
} }
} }