2022-09-26 15:56:24 +02:00
|
|
|
window.onload = function() {
|
|
|
|
// Begin Swagger UI call region
|
2023-05-28 23:29:58 +02:00
|
|
|
window.ui = SwaggerUIBundle({
|
2022-09-26 15:56:24 +02: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
|
|
|
|
|
|
|
|
};
|