File indexing completed on 2024-11-24 05:18:56
0001 <!-- 0002 ~ 0003 ~ ocs-apiserver 0004 ~ 0005 ~ Copyright 2016 by pling GmbH. 0006 ~ 0007 ~ This file is part of ocs-apiserver. 0008 ~ 0009 ~ This program is free software: you can redistribute it and/or modify 0010 ~ it under the terms of the GNU Affero General Public License as 0011 ~ published by the Free Software Foundation, either version 3 of the 0012 ~ License, or (at your option) any later version. 0013 ~ 0014 ~ This program is distributed in the hope that it will be useful, 0015 ~ but WITHOUT ANY WARRANTY; without even the implied warranty of 0016 ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 0017 ~ GNU Affero General Public License for more details. 0018 ~ 0019 ~ You should have received a copy of the GNU Affero General Public License 0020 ~ along with this program. If not, see <http://www.gnu.org/licenses/>. 0021 ~ 0022 --> 0023 0024 <!-- HTML for static distribution bundle build --> 0025 <!DOCTYPE html> 0026 <html lang="en"> 0027 <head> 0028 <meta charset="UTF-8"> 0029 <title>Swagger UI</title> 0030 <link rel="stylesheet" type="text/css" href="./swagger-ui.css" > 0031 <link rel="icon" type="image/png" href="./favicon-32x32.png" sizes="32x32" /> 0032 <link rel="icon" type="image/png" href="./favicon-16x16.png" sizes="16x16" /> 0033 <style> 0034 html 0035 { 0036 box-sizing: border-box; 0037 overflow: -moz-scrollbars-vertical; 0038 overflow-y: scroll; 0039 } 0040 0041 *, 0042 *:before, 0043 *:after 0044 { 0045 box-sizing: inherit; 0046 } 0047 0048 body 0049 { 0050 margin:0; 0051 background: #fafafa; 0052 } 0053 0054 0055 </style> 0056 </head> 0057 0058 <body> 0059 <div id="swagger-ui"></div> 0060 0061 <script src="./swagger-ui-bundle.js"> </script> 0062 <script src="./swagger-ui-standalone-preset.js"> </script> 0063 <script> 0064 window.onload = function() { 0065 // Begin Swagger UI call region 0066 const ui = SwaggerUIBundle({ 0067 url: "https://api.opendesktop.cc/swagger/openapi.json", 0068 dom_id: '#swagger-ui', 0069 deepLinking: true, 0070 presets: [ 0071 SwaggerUIBundle.presets.apis, 0072 SwaggerUIStandalonePreset.slice(1) 0073 ], 0074 layout: "StandaloneLayout" 0075 }); 0076 // End Swagger UI call region 0077 0078 window.ui = ui 0079 } 0080 </script> 0081 </body> 0082 </html>