Skip to content

Commit

Permalink
fix: missing import
Browse files Browse the repository at this point in the history
  • Loading branch information
QuadStingray committed Sep 29, 2023
1 parent c70933f commit cd14b09
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ object ApiDocsRoutes extends BaseRoute {
val openApiYml: String = openApiDocs.toYaml

if (swaggerEnabled) {
val swaggerUIRoute = SwaggerUI[Future](openApiYml, SwaggerUIOptions(List("docs"), nameOpenApiDocsYamlName, List(), useRelativePaths = true))
val swaggerUIRoute = SwaggerUI[Future](openApiYml, SwaggerUIOptions(List("docs"), nameOpenApiDocsYamlName, List(), useRelativePaths = true, showExtensions = false))
docs ++= swaggerUIRoute
}

Expand Down

0 comments on commit cd14b09

Please sign in to comment.