mirror of
https://github.com/grocy/grocy.git
synced 2025-09-19 11:05:50 +00:00
27 lines
446 B
JavaScript
27 lines
446 B
JavaScript
![]() |
function HideTopbarPlugin()
|
|||
|
{
|
|||
|
return {
|
|||
|
components: {
|
|||
|
Topbar: function () { return null }
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
const swaggerUi = SwaggerUIBundle({
|
|||
|
url: Grocy.OpenApi.SpecUrl,
|
|||
|
dom_id: '#swagger-ui',
|
|||
|
deepLinking: true,
|
|||
|
presets: [
|
|||
|
SwaggerUIBundle.presets.apis,
|
|||
|
SwaggerUIStandalonePreset
|
|||
|
],
|
|||
|
plugins: [
|
|||
|
SwaggerUIBundle.plugins.DownloadUrl,
|
|||
|
HideTopbarPlugin
|
|||
|
],
|
|||
|
layout: 'StandaloneLayout',
|
|||
|
docExpansion: "list"
|
|||
|
});
|
|||
|
|
|||
|
window.ui = swaggerUi;
|