All checks were successful
sample gradle build and test / build (pull_request) Successful in 1m49s
- Configure OpenAPI with OAuth2 authorization code flow and required scopes - Add security scheme and requirements for API documentation - Remove unused swagger redirect methods from HomeController - Comment out swagger endpoint permissions in SecurityConfig
17 lines
423 B
Java
17 lines
423 B
Java
package com.hithomelabs.CFTunnels.Controllers;
|
|
|
|
|
|
import org.springframework.boot.web.servlet.error.ErrorController;
|
|
import org.springframework.stereotype.Controller;
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
|
@Controller
|
|
public class HomeController implements ErrorController {
|
|
|
|
private static final String ERROR_PATH = "/error";
|
|
|
|
|
|
|
|
}
|