mirror of
https://github.com/grocy/grocy.git
synced 2025-12-01 10:41:47 +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;
|
|||
|
|
});
|