Added download upload and credit routes

This commit is contained in:
Max W. 2024-02-02 16:24:38 +01:00
parent b34d072a9c
commit ca42237ba3

View File

@ -10,5 +10,8 @@ public class MvcConfig implements WebMvcConfigurer {
@Override
public void addViewControllers(ViewControllerRegistry registry) {
registry.addViewController("/home").setViewName("forward:/index.html");
registry.addViewController("/download").setViewName("forward:/index.html");
registry.addViewController("/upload").setViewName("forward:/index.html");
registry.addViewController("/credits").setViewName("forward:/index.html");
}
}