a cache for slack profile pictures and emojis
1<!DOCTYPE html>
2<html lang="en">
3<head>
4 <meta charset="UTF-8">
5 <meta name="viewport" content="width=device-width, initial-scale=1.0">
6 <title>Cachet API Documentation</title>
7 <link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/swagger-ui-dist@5.9.0/swagger-ui.css">
8 <style>
9 html {
10 box-sizing: border-box;
11 overflow: -moz-scrollbars-vertical;
12 overflow-y: scroll;
13 }
14
15 *,
16 *:before,
17 *:after {
18 box-sizing: inherit;
19 }
20
21 body {
22 margin: 0;
23 background: #fafafa;
24 }
25 </style>
26</head>
27<body>
28 <div id="swagger-ui"></div>
29
30 <script src="https://cdn.jsdelivr.net/npm/swagger-ui-dist@5.9.0/swagger-ui-bundle.js"></script>
31 <script src="https://cdn.jsdelivr.net/npm/swagger-ui-dist@5.9.0/swagger-ui-standalone-preset.js"></script>
32 <script>
33 window.onload = function() {
34 // Begin Swagger UI call region
35 const ui = SwaggerUIBundle({
36 url: "/swagger.json",
37 dom_id: '#swagger-ui',
38 deepLinking: true,
39 presets: [
40 SwaggerUIBundle.presets.apis,
41 SwaggerUIStandalonePreset
42 ],
43 plugins: [
44 SwaggerUIBundle.plugins.DownloadUrl
45 ],
46 layout: "StandaloneLayout"
47 });
48 // End Swagger UI call region
49 window.ui = ui;
50 };
51 </script>
52</body>
53</html>