mirror of
https://github.com/mailcow/mailcow-dockerized.git
synced 2024-12-03 08:40:05 +08:00
19 lines
433 B
JavaScript
19 lines
433 B
JavaScript
window.onload = function() {
|
|
// Begin Swagger UI call region
|
|
window.ui = SwaggerUIBundle({
|
|
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
|
|
|
|
};
|