vasraz | a86a4ce | 2021-06-11 19:02:58 +0100 | [diff] [blame] | 1 | <!-- HTML for static distribution bundle build --> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 2 | <!DOCTYPE html> |
vasraz | a86a4ce | 2021-06-11 19:02:58 +0100 | [diff] [blame] | 3 | <html lang="en"> |
| 4 | <head> |
| 5 | <meta charset="UTF-8"> |
| 6 | <title>API Docs</title> |
| 7 | <link rel="stylesheet" type="text/css" href="./css/swagger-ui.css" /> |
| 8 | <link rel="icon" type="image/png" href="./images/favicon-32x32.png" sizes="32x32" /> |
| 9 | <link rel="icon" type="image/png" href="./images/favicon-16x16.png" sizes="16x16" /> |
| 10 | <style> |
| 11 | html |
| 12 | { |
| 13 | box-sizing: border-box; |
| 14 | overflow: -moz-scrollbars-vertical; |
| 15 | overflow-y: scroll; |
| 16 | } |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 17 | |
vasraz | a86a4ce | 2021-06-11 19:02:58 +0100 | [diff] [blame] | 18 | *, |
| 19 | *:before, |
| 20 | *:after |
| 21 | { |
| 22 | box-sizing: inherit; |
| 23 | } |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 24 | |
vasraz | a86a4ce | 2021-06-11 19:02:58 +0100 | [diff] [blame] | 25 | body |
| 26 | { |
| 27 | margin:0; |
| 28 | background: #fafafa; |
| 29 | } |
| 30 | </style> |
| 31 | </head> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 32 | |
vasraz | a86a4ce | 2021-06-11 19:02:58 +0100 | [diff] [blame] | 33 | <body> |
| 34 | <div id="swagger-ui"></div> |
| 35 | |
| 36 | <script src="./lib/swagger-ui-bundle.js" charset="UTF-8"> </script> |
| 37 | <script src="./lib/swagger-ui-standalone-preset.js" charset="UTF-8"> </script> |
| 38 | <script> |
| 39 | window.onload = function() { |
| 40 | let url = window.location.protocol + "//" + window.location.host; |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 41 | if (window.location.pathname.indexOf('/api-docs') > 0) { |
| 42 | url += window.location.pathname.substring(0, window.location.pathname.indexOf('/api-docs')) |
| 43 | } |
Fiete Ostkamp | 8137832 | 2022-12-13 21:05:47 +0000 | [diff] [blame^] | 44 | url += "/api-docs/openapi-sdce-1.json"; |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 45 | |
vasraz | a86a4ce | 2021-06-11 19:02:58 +0100 | [diff] [blame] | 46 | // Begin Swagger UI call region |
| 47 | const ui = SwaggerUIBundle({ |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 48 | url: url, |
vasraz | a86a4ce | 2021-06-11 19:02:58 +0100 | [diff] [blame] | 49 | dom_id: '#swagger-ui', |
| 50 | deepLinking: true, |
| 51 | presets: [ |
| 52 | SwaggerUIBundle.presets.apis, |
| 53 | SwaggerUIStandalonePreset |
| 54 | ], |
| 55 | plugins: [ |
| 56 | SwaggerUIBundle.plugins.DownloadUrl |
| 57 | ], |
| 58 | layout: "StandaloneLayout" |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 59 | }); |
vasraz | a86a4ce | 2021-06-11 19:02:58 +0100 | [diff] [blame] | 60 | // End Swagger UI call region |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 61 | |
vasraz | a86a4ce | 2021-06-11 19:02:58 +0100 | [diff] [blame] | 62 | window.ui = ui; |
| 63 | }; |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 64 | </script> |
vasraz | a86a4ce | 2021-06-11 19:02:58 +0100 | [diff] [blame] | 65 | </body> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 66 | </html> |