micro-tests/server/combo/swagger-ui/swagger-initializer.js
Vasiliy Tolstov 23113d8c9f regen
Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
2023-03-05 15:03:48 +03:00

21 lines
559 B
JavaScript

window.onload = function() {
//<editor-fold desc="Changeable Configuration Block">
// the following lines will be replaced by docker/configurator, when it runs in a docker-container
window.ui = SwaggerUIBundle({
url: "./swagger.yaml",
dom_id: '#swagger-ui',
deepLinking: true, displayOperationId: true, tryItOutEnabled: true,
presets: [
SwaggerUIBundle.presets.apis,
SwaggerUIStandalonePreset
],
plugins: [
SwaggerUIBundle.plugins.DownloadUrl
],
layout: "StandaloneLayout"
});
//</editor-fold>
};