summaryrefslogtreecommitdiffstats
path: root/dozentenmodulserver/api/src/main/java/org/openapitools/configuration/HomeController.java
blob: 25727830541b4f3e318ec61e7dc5ee05a8fe67d8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package org.openapitools.configuration;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;


/**
 * Home redirection to OpenAPI api documentation
 */
@Controller
public class HomeController {

    @RequestMapping("/")
    public String index() {
        return "redirect:swagger-ui.html";
    }


}