CdsConnector/public/bundles/apiplatform/init-redoc-ui.js

8 lines
193 B
JavaScript
Raw Permalink Normal View History

2022-06-22 17:02:10 +02:00
'use strict';
window.onload = () => {
const data = JSON.parse(document.getElementById('swagger-data').innerText);
Redoc.init(data.spec, {}, document.getElementById('swagger-ui'));
};