summaryrefslogblamecommitdiffstats
path: root/dozentenmodulserver/api/src/main/java/org/openapitools/configuration/HomeController.java
blob: 25727830541b4f3e318ec61e7dc5ee05a8fe67d8 (plain) (tree)


















                                                              
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";
    }


}