Added favicons (iconset && auto-detection)

This commit is contained in:
2023-12-23 23:52:53 +01:00
parent c38afc6ef3
commit 8eed2ca69f
32 changed files with 576 additions and 36 deletions

View File

@@ -175,6 +175,21 @@
}
}
},
"/icon/:cs": {
"get": {
"summary": "Get Icon",
"parameters": [
{
"type": "number",
"description": "Icon Checksum",
"name": "cs",
"in": "path",
"required": true
}
],
"responses": {}
}
},
"/index.html": {
"get": {
"summary": "(Website)",
@@ -304,6 +319,9 @@
"contentType": {
"type": "string"
},
"icon": {
"type": "string"
},
"ip": {
"type": "string"
},

View File

@@ -58,6 +58,8 @@ definitions:
properties:
contentType:
type: string
icon:
type: string
ip:
type: string
name:
@@ -193,6 +195,16 @@ paths:
summary: Return 200 after x seconds
tags:
- Common
/icon/:cs:
get:
parameters:
- description: Icon Checksum
in: path
name: cs
required: true
type: number
responses: {}
summary: Get Icon
/index.html:
get:
responses: {}