1
0

[skip ci] Updated swagger docs

This commit is contained in:
Frederick [Bot]
2024-03-12 19:47:16 +00:00
committed by kolaente
parent a5c51d4b1e
commit 792bf88dcf
3 changed files with 106 additions and 48 deletions

View File

@ -7098,6 +7098,7 @@
"JWTKeyAuth": []
}
],
"description": "Add a reaction to an entity. Will do nothing if the reaction already exists.",
"consumes": [
"application/json"
],
@ -7153,8 +7154,10 @@
}
}
}
},
"delete": {
}
},
"/{kind}/{id}/reactions/delete": {
"post": {
"security": [
{
"JWTKeyAuth": []
@ -7582,6 +7585,14 @@
"description": "The project this task belongs to.",
"type": "integer"
},
"reactions": {
"description": "Reactions on that task.",
"allOf": [
{
"$ref": "#/definitions/models.ReactionMap"
}
]
},
"related_tasks": {
"description": "All related tasks, grouped by their relation kind",
"allOf": [
@ -8230,6 +8241,14 @@
"description": "The project this task belongs to.",
"type": "integer"
},
"reactions": {
"description": "Reactions on that task.",
"allOf": [
{
"$ref": "#/definitions/models.ReactionMap"
}
]
},
"related_tasks": {
"description": "All related tasks, grouped by their relation kind",
"allOf": [
@ -8353,6 +8372,9 @@
"id": {
"type": "integer"
},
"reactions": {
"$ref": "#/definitions/models.ReactionMap"
},
"updated": {
"type": "string"
}