Add bucket limit validation
This commit is contained in:
parent
6e5a9868f5
commit
f429efc220
4 changed files with 6 additions and 3 deletions
|
|
@ -7204,7 +7204,8 @@ var doc = `{
|
|||
},
|
||||
"limit": {
|
||||
"description": "How many tasks can be at the same time on this board max",
|
||||
"type": "integer"
|
||||
"type": "integer",
|
||||
"minimum": 0
|
||||
},
|
||||
"list_id": {
|
||||
"description": "The list this bucket belongs to.",
|
||||
|
|
|
|||
|
|
@ -7187,7 +7187,8 @@
|
|||
},
|
||||
"limit": {
|
||||
"description": "How many tasks can be at the same time on this board max",
|
||||
"type": "integer"
|
||||
"type": "integer",
|
||||
"minimum": 0
|
||||
},
|
||||
"list_id": {
|
||||
"description": "The list this bucket belongs to.",
|
||||
|
|
|
|||
|
|
@ -91,6 +91,7 @@ definitions:
|
|||
type: boolean
|
||||
limit:
|
||||
description: How many tasks can be at the same time on this board max
|
||||
minimum: 0
|
||||
type: integer
|
||||
list_id:
|
||||
description: The list this bucket belongs to.
|
||||
|
|
|
|||
Reference in a new issue