Skip to content
Snippets Groups Projects
Commit 3914b875 authored by Daniel Gerhardt's avatar Daniel Gerhardt
Browse files

Add forwarding for /v2/

parent 3697e106
Branches
Tags
No related merge requests found
package de.thm.arsnova.controller.v2;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
@Controller("v2WelcomeController")
@RequestMapping("/v2")
public class WelcomeController {
@RequestMapping(value = "/")
public String forwardHome() {
return "forward:/";
}
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment