Added download upload and credit routes
This commit is contained in:
@ -10,5 +10,8 @@ public class MvcConfig implements WebMvcConfigurer {
|
|||||||
@Override
|
@Override
|
||||||
public void addViewControllers(ViewControllerRegistry registry) {
|
public void addViewControllers(ViewControllerRegistry registry) {
|
||||||
registry.addViewController("/home").setViewName("forward:/index.html");
|
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");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user