We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81fb690 commit 38b5ac4Copy full SHA for 38b5ac4
tuk-api/src/main/kotlin/nexters/tuk/config/SwaggerConfig.kt
@@ -1,10 +1,13 @@
1
package nexters.tuk.config
2
3
+import io.swagger.v3.oas.annotations.OpenAPIDefinition
4
import io.swagger.v3.oas.annotations.enums.SecuritySchemeType
5
import io.swagger.v3.oas.annotations.security.SecurityScheme
6
+import io.swagger.v3.oas.annotations.servers.Server
7
import org.springframework.context.annotation.Configuration
8
9
10
+@OpenAPIDefinition(servers = [Server(url = "/", description = "Default Server URL")])
11
@SecurityScheme(
12
name = "Authorization",
13
type = SecuritySchemeType.HTTP,
0 commit comments