mailcow-dockerized/data/web/api/swagger-initializer.js

19 lines
433 B
JavaScript
Raw Normal View History

2022-09-26 21:56:24 +08:00
window.onload = function() {
// Begin Swagger UI call region
2023-05-29 05:29:58 +08:00
window.ui = SwaggerUIBundle({
2022-09-26 21:56:24 +08:00
urls: [{url: "/api/openapi.yaml", name: "mailcow API"}],
dom_id: '#swagger-ui',
deepLinking: true,
presets: [
SwaggerUIBundle.presets.apis,
SwaggerUIStandalonePreset
],
plugins: [
SwaggerUIBundle.plugins.DownloadUrl
],
layout: "StandaloneLayout"
});
// End Swagger UI call region
};