mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-22 19:07:54 +01:00
c7c2f17bd0
Co-authored-by: Ivar Conradi Østhus <ivarconr@gmail.com>
77 lines
1.9 KiB
HTML
77 lines
1.9 KiB
HTML
<!-- HTML for static distribution bundle build -->
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Unleash Open API</title>
|
|
<link rel="stylesheet" href="theme-material.css">
|
|
<!-- Material design styles from ostranme.github.io/swagger-ui-themes
|
|
Original follows
|
|
<link rel="stylesheet" type="text/css" href="./swagger-ui.css" > -->
|
|
<link rel="icon" type="image/png" href="./favicon-32x32.png" sizes="32x32" />
|
|
<link rel="icon" type="image/png" href="./favicon-16x16.png" sizes="16x16" />
|
|
<style>
|
|
html
|
|
{
|
|
box-sizing: border-box;
|
|
overflow: -moz-scrollbars-vertical;
|
|
overflow-y: scroll;
|
|
}
|
|
|
|
*,
|
|
*:before,
|
|
*:after
|
|
{
|
|
box-sizing: inherit;
|
|
}
|
|
|
|
body
|
|
{
|
|
margin:0;
|
|
background: #fafafa;
|
|
}
|
|
|
|
.topbar-wrapper img {
|
|
content: url(https://unleash.github.io/img/logo-inverted.png);
|
|
}
|
|
|
|
.swagger-ui .topbar .download-url-wrapper .download-url-button {
|
|
background-color: #3f51b5 !important;
|
|
}
|
|
|
|
.swagger-ui .topbar .download-url-wrapper input[type=text] {
|
|
border-color: #3f51b5 !important;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="swagger-ui"></div>
|
|
|
|
<script src="./swagger-ui-bundle.js" charset="UTF-8"> </script>
|
|
<script src="./swagger-ui-standalone-preset.js" charset="UTF-8"> </script>
|
|
<script>
|
|
window.onload = function() {
|
|
// Begin Swagger UI call region
|
|
const ui = SwaggerUIBundle({
|
|
url: "openapi.yaml",
|
|
dom_id: '#swagger-ui',
|
|
defaultModelsExpandDepth: -1,
|
|
deepLinking: true,
|
|
presets: [
|
|
SwaggerUIBundle.presets.apis,
|
|
SwaggerUIStandalonePreset
|
|
],
|
|
plugins: [
|
|
SwaggerUIBundle.plugins.DownloadUrl
|
|
],
|
|
layout: "StandaloneLayout"
|
|
})
|
|
// End Swagger UI call region
|
|
|
|
window.ui = ui
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|