Merge branch 'master' of git://github.com/TXC/AdGuardHome into TXC-master

This commit is contained in:
Andrey Meshkov 2020-05-20 23:48:26 +03:00
commit 653d68718b
4 changed files with 2862 additions and 1691 deletions

View File

@ -1,60 +1,24 @@
<!-- HTML for static distribution bundle build -->
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html>
<head> <head>
<meta charset="UTF-8">
<title>AdGuard Home API</title> <title>AdGuard Home API</title>
<link rel="stylesheet" type="text/css" href="./node_modules/swagger-ui-dist/swagger-ui.css" > <!-- needed for adaptive design -->
<link rel="icon" type="image/png" href="./node_modules/swagger-ui-dist/favicon-32x32.png" sizes="32x32" /> <meta charset="utf-8"/>
<link rel="icon" type="image/png" href="./node_modules/swagger-ui-dist/favicon-16x16.png" sizes="16x16" /> <meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Montserrat:300,400,700|Roboto:300,400,700" rel="stylesheet">
<!--
ReDoc doesn't change outer page styles
-->
<style> <style>
html body {
{ margin: 0;
box-sizing: border-box; padding: 0;
overflow: -moz-scrollbars-vertical;
overflow-y: scroll;
}
*,
*:before,
*:after
{
box-sizing: inherit;
}
body
{
margin:0;
background: #fafafa;
} }
</style> </style>
</head> </head>
<body> <body>
<div id="swagger-ui"></div> <redoc spec-url='openapi.yaml'></redoc>
<script src="https://cdn.jsdelivr.net/npm/redoc@next/bundles/redoc.standalone.js"> </script>
<script src="./node_modules/swagger-ui-dist/swagger-ui-bundle.js"> </script>
<script src="./node_modules/swagger-ui-dist/swagger-ui-standalone-preset.js"> </script>
<script>
window.onload = function() {
// Begin Swagger UI call region
const ui = SwaggerUIBundle({
url: "./openapi.yaml",
dom_id: '#swagger-ui',
deepLinking: true,
presets: [
SwaggerUIBundle.presets.apis,
SwaggerUIStandalonePreset
],
plugins: [
SwaggerUIBundle.plugins.DownloadUrl
],
layout: "StandaloneLayout"
})
// End Swagger UI call region
window.ui = ui
}
</script>
</body> </body>
</html> </html>

File diff suppressed because it is too large Load Diff

View File

@ -3,10 +3,13 @@
"version": "0.1.0", "version": "0.1.0",
"private": true, "private": true,
"scripts": { "scripts": {
"start": "node index.js" "start": "node_modules/.bin/speccy serve -p 4000 openapi.yaml",
"start-old": "node index.js",
"test": "node_modules/.bin/speccy lint openapi.yaml"
}, },
"dependencies": { "dependencies": {
"express": "^4.16.4", "express": "^4.16.4",
"swagger-ui-dist": "^3.20.1" "speccy": "^0.11.0",
"swagger-ui-dist": "^3.25.1"
} }
} }

File diff suppressed because it is too large Load Diff