mirror of
https://github.com/grocy/grocy.git
synced 2025-04-29 09:39:57 +00:00
19 lines
347 B
JavaScript
19 lines
347 B
JavaScript
$(function ()
|
|
{
|
|
const swaggerUi = SwaggerUIBundle({
|
|
url: U('/api/get-open-api-specification'),
|
|
dom_id: '#swagger-ui',
|
|
deepLinking: true,
|
|
presets: [
|
|
SwaggerUIBundle.presets.apis,
|
|
SwaggerUIStandalonePreset
|
|
],
|
|
plugins: [
|
|
SwaggerUIBundle.plugins.DownloadUrl
|
|
],
|
|
layout: 'StandaloneLayout'
|
|
});
|
|
|
|
window.ui = swaggerUi;
|
|
});
|