mirror of
https://github.com/grocy/grocy.git
synced 2025-09-19 11:05:50 +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;
|
|||
|
});
|