mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-01 04:54:09 +00:00
23 lines
587 B
JavaScript
23 lines
587 B
JavaScript
import SwaggerUI from 'swagger-ui-dist/swagger-ui-es-bundle.js';
|
|
import 'swagger-ui-dist/swagger-ui.css';
|
|
|
|
window.addEventListener('load', async () => {
|
|
const url = document.getElementById('swagger-ui').getAttribute('data-source');
|
|
|
|
const ui = SwaggerUI({
|
|
url,
|
|
dom_id: '#swagger-ui',
|
|
deepLinking: true,
|
|
docExpansion: 'none',
|
|
defaultModelRendering: 'model', // don't show examples by default, because they may be incomplete
|
|
presets: [
|
|
SwaggerUI.presets.apis,
|
|
],
|
|
plugins: [
|
|
SwaggerUI.plugins.DownloadUrl,
|
|
],
|
|
});
|
|
|
|
window.ui = ui;
|
|
});
|