swagger-initializer.js 433 B

12345678910111213141516171819
  1. window.onload = function() {
  2. // Begin Swagger UI call region
  3. window.ui = SwaggerUIBundle({
  4. urls: [{url: "/api/openapi.yaml", name: "mailcow API"}],
  5. dom_id: '#swagger-ui',
  6. deepLinking: true,
  7. presets: [
  8. SwaggerUIBundle.presets.apis,
  9. SwaggerUIStandalonePreset
  10. ],
  11. plugins: [
  12. SwaggerUIBundle.plugins.DownloadUrl
  13. ],
  14. layout: "StandaloneLayout"
  15. });
  16. // End Swagger UI call region
  17. };