Skip to content

Commit

Permalink
Merge branch 'main' of github.com:sctg-development/sctgdesk-api-server
Browse files Browse the repository at this point in the history
  • Loading branch information
eltorio committed May 10, 2024
2 parents 1de8379 + de41e40 commit bd8ba60
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/index.html

Large diffs are not rendered by default.

36 changes: 35 additions & 1 deletion docs/openapi3.json
Original file line number Diff line number Diff line change
Expand Up @@ -1411,7 +1411,7 @@
"/api/software/client-download-link/{key}": {
"get": {
"tags": [
"User (todo)"
"Software"
],
"description": "Software, get the software download url",
"operationId": "software",
Expand Down Expand Up @@ -1441,6 +1441,27 @@
}
}
}
},
"/api/software/version/server": {
"get": {
"tags": [
"Software"
],
"summary": "[openapi(tag = \"Software\")]",
"operationId": "software_version",
"responses": {
"200": {
"description": "",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SoftwareVersionResponse"
}
}
}
}
}
}
}
},
"components": {
Expand Down Expand Up @@ -2269,6 +2290,19 @@
"type": "string"
}
}
},
"SoftwareVersionResponse": {
"type": "object",
"properties": {
"server": {
"type": "string",
"nullable": true
},
"client": {
"type": "string",
"nullable": true
}
}
}
},
"securitySchemes": {
Expand Down

0 comments on commit bd8ba60

Please sign in to comment.