mirror of https://gitlab.com/tildes/tildes.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.1 KiB
36 lines
1.1 KiB
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Swagger UI</title>
|
|
<link rel="stylesheet" type="text/css" href="/swagger-ui/swagger-ui.css" />
|
|
<link rel="stylesheet" type="text/css" href="/swagger-ui/index.css" />
|
|
</head>
|
|
|
|
<body>
|
|
<div id="swagger-ui"></div>
|
|
<script src="/swagger-ui/swagger-ui-bundle.js" charset="UTF-8"> </script>
|
|
<script src="/swagger-ui/swagger-ui-standalone-preset.js" charset="UTF-8"> </script>
|
|
<script${nonce_attr}>
|
|
window.onload = function() {
|
|
const uiConfig = ${ui_config};
|
|
Object.assign(uiConfig, {
|
|
presets: [
|
|
SwaggerUIBundle.presets.apis,
|
|
SwaggerUIStandalonePreset,
|
|
],
|
|
plugins: [
|
|
SwaggerUIBundle.plugins.DownloadUrl,
|
|
],
|
|
});
|
|
const oauthConfig = ${oauth_config};
|
|
// Build a system
|
|
const ui = SwaggerUIBundle(uiConfig);
|
|
if (oauthConfig) {
|
|
ui.initOAuth(oauthConfig);
|
|
}
|
|
window.ui = ui;
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|