[skip ci] Updated swagger docs
This commit is contained in:
parent
1e82c62ff7
commit
12f290905a
|
|
@ -9876,7 +9876,8 @@ const docTemplate = `{
|
||||||
},
|
},
|
||||||
"value": {
|
"value": {
|
||||||
"description": "The actual reaction. This can be any valid utf character or text, up to a length of 20.",
|
"description": "The actual reaction. This can be any valid utf character or text, up to a length of 20.",
|
||||||
"type": "string"
|
"type": "string",
|
||||||
|
"maxLength": 20
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
@ -10373,7 +10374,7 @@ const docTemplate = `{
|
||||||
"type": "integer"
|
"type": "integer"
|
||||||
},
|
},
|
||||||
"relation_kind": {
|
"relation_kind": {
|
||||||
"description": "The kind of the relation.",
|
"description": "The kind of the relation.\nThe enum list must stay in sync with RelationKind.isValid() (RelationKindUnknown excluded); the v2 delete route param repeats it.",
|
||||||
"allOf": [
|
"allOf": [
|
||||||
{
|
{
|
||||||
"$ref": "#/definitions/models.RelationKind"
|
"$ref": "#/definitions/models.RelationKind"
|
||||||
|
|
|
||||||
|
|
@ -9868,7 +9868,8 @@
|
||||||
},
|
},
|
||||||
"value": {
|
"value": {
|
||||||
"description": "The actual reaction. This can be any valid utf character or text, up to a length of 20.",
|
"description": "The actual reaction. This can be any valid utf character or text, up to a length of 20.",
|
||||||
"type": "string"
|
"type": "string",
|
||||||
|
"maxLength": 20
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
@ -10365,7 +10366,7 @@
|
||||||
"type": "integer"
|
"type": "integer"
|
||||||
},
|
},
|
||||||
"relation_kind": {
|
"relation_kind": {
|
||||||
"description": "The kind of the relation.",
|
"description": "The kind of the relation.\nThe enum list must stay in sync with RelationKind.isValid() (RelationKindUnknown excluded); the v2 delete route param repeats it.",
|
||||||
"allOf": [
|
"allOf": [
|
||||||
{
|
{
|
||||||
"$ref": "#/definitions/models.RelationKind"
|
"$ref": "#/definitions/models.RelationKind"
|
||||||
|
|
|
||||||
|
|
@ -741,6 +741,7 @@ definitions:
|
||||||
value:
|
value:
|
||||||
description: The actual reaction. This can be any valid utf character or text,
|
description: The actual reaction. This can be any valid utf character or text,
|
||||||
up to a length of 20.
|
up to a length of 20.
|
||||||
|
maxLength: 20
|
||||||
type: string
|
type: string
|
||||||
type: object
|
type: object
|
||||||
models.ReactionMap:
|
models.ReactionMap:
|
||||||
|
|
@ -1134,7 +1135,9 @@ definitions:
|
||||||
relation_kind:
|
relation_kind:
|
||||||
allOf:
|
allOf:
|
||||||
- $ref: '#/definitions/models.RelationKind'
|
- $ref: '#/definitions/models.RelationKind'
|
||||||
description: The kind of the relation.
|
description: |-
|
||||||
|
The kind of the relation.
|
||||||
|
The enum list must stay in sync with RelationKind.isValid() (RelationKindUnknown excluded); the v2 delete route param repeats it.
|
||||||
task_id:
|
task_id:
|
||||||
description: The ID of the "base" task, the task which has a relation to another.
|
description: The ID of the "base" task, the task which has a relation to another.
|
||||||
type: integer
|
type: integer
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue