18 lines
431 B
JavaScript
18 lines
431 B
JavaScript
window.addEventListener("load", function () {
|
|
window.ui = SwaggerUIBundle({
|
|
url: "/open-api/openapi.yaml",
|
|
dom_id: "#swagger-ui",
|
|
deepLinking: true,
|
|
displayRequestDuration: true,
|
|
filter: true,
|
|
persistAuthorization: false,
|
|
tryItOutEnabled: false,
|
|
validatorUrl: null,
|
|
presets: [
|
|
SwaggerUIBundle.presets.apis,
|
|
SwaggerUIStandalonePreset
|
|
],
|
|
layout: "StandaloneLayout"
|
|
});
|
|
});
|