Skip to content

Commit 5ef476e

Browse files
maintenance:update swagger ui
1 parent c1825c7 commit 5ef476e

4 files changed

Lines changed: 72 additions & 49 deletions

File tree

authentication.html

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
<!DOCTYPE html>
2+
<html xmlns="http://www.w3.org/1999/xhtml">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1" />
6+
<meta name="description" content="Europace Authentication" />
7+
<title>Europace Authentication</title>
8+
<link href="https://unpkg.com/swagger-ui-dist@5.27.1/swagger-ui.css" rel="stylesheet" type="text/css">
9+
</head>
10+
<body style="margin:0 auto;">
11+
<div id="swagger-ui"></div>
12+
<script src="https://unpkg.com/swagger-ui-dist@5.27.1/swagger-ui-bundle.js" crossorigin></script>
13+
<script src="https://unpkg.com/swagger-ui-dist@5.27.1/swagger-ui-standalone-preset.js" crossorigin></script>
14+
15+
<script>
16+
window.onload = function () {
17+
// Build a system
18+
window.ui = SwaggerUIBundle({
19+
url: "https://raw.githubusercontent.com/europace/authorization-api/master/authorization.yaml",
20+
dom_id: '#swagger-ui',
21+
deepLinking: true,
22+
maxDisplayedTags: 1,
23+
operationsSorter: "alpha",
24+
syntaxHighlight: true,
25+
tryItOutEnabled: false,
26+
presets: [
27+
SwaggerUIBundle.presets.apis,
28+
SwaggerUIStandalonePreset
29+
],
30+
plugins: [],
31+
layout: "StandaloneLayout",
32+
});
33+
};
34+
</script>
35+
</body>
36+
</html>

oas-doc.html

Lines changed: 0 additions & 37 deletions
This file was deleted.

silent-sign-in.html

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
<!DOCTYPE html>
2+
<html xmlns="http://www.w3.org/1999/xhtml">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1" />
6+
<meta name="description" content="Europace Silent-Sign-In API" />
7+
<title>Europace Silent-Sign-In API</title>
8+
<link href="https://unpkg.com/swagger-ui-dist@5.27.1/swagger-ui.css" rel="stylesheet" type="text/css">
9+
</head>
10+
<body style="margin:0 auto;">
11+
<div id="swagger-ui"></div>
12+
<script src="https://unpkg.com/swagger-ui-dist@5.27.1/swagger-ui-bundle.js" crossorigin></script>
13+
<script src="https://unpkg.com/swagger-ui-dist@5.27.1/swagger-ui-standalone-preset.js" crossorigin></script>
14+
15+
<script>
16+
window.onload = function () {
17+
// Build a system
18+
window.ui = SwaggerUIBundle({
19+
url: "https://raw.githubusercontent.com/europace/authorization-api/master/docs/silent-sign-in/ssi-openapi.yaml",
20+
dom_id: '#swagger-ui',
21+
deepLinking: true,
22+
maxDisplayedTags: 1,
23+
operationsSorter: "alpha",
24+
syntaxHighlight: true,
25+
tryItOutEnabled: false,
26+
presets: [
27+
SwaggerUIBundle.presets.apis,
28+
SwaggerUIStandalonePreset
29+
],
30+
plugins: [],
31+
layout: "StandaloneLayout",
32+
});
33+
};
34+
</script>
35+
</body>
36+
</html>

ssi.html

Lines changed: 0 additions & 12 deletions
This file was deleted.

0 commit comments

Comments
 (0)