Add bucket limit validation
This commit is contained in:
parent
6e5a9868f5
commit
f429efc220
4 changed files with 6 additions and 3 deletions
|
@ -37,7 +37,7 @@ type Bucket struct {
|
||||||
Tasks []*Task `xorm:"-" json:"tasks"`
|
Tasks []*Task `xorm:"-" json:"tasks"`
|
||||||
|
|
||||||
// How many tasks can be at the same time on this board max
|
// How many tasks can be at the same time on this board max
|
||||||
Limit int64 `xorm:"default 0" json:"limit"`
|
Limit int64 `xorm:"default 0" json:"limit" minimum:"0" valid:"range(0|9223372036854775807)"`
|
||||||
// If this bucket is the "done bucket". All tasks moved into this bucket will automatically marked as done. All tasks marked as done from elsewhere will be moved into this bucket.
|
// If this bucket is the "done bucket". All tasks moved into this bucket will automatically marked as done. All tasks marked as done from elsewhere will be moved into this bucket.
|
||||||
IsDoneBucket bool `xorm:"BOOL" json:"is_done_bucket"`
|
IsDoneBucket bool `xorm:"BOOL" json:"is_done_bucket"`
|
||||||
|
|
||||||
|
|
|
@ -7204,7 +7204,8 @@ var doc = `{
|
||||||
},
|
},
|
||||||
"limit": {
|
"limit": {
|
||||||
"description": "How many tasks can be at the same time on this board max",
|
"description": "How many tasks can be at the same time on this board max",
|
||||||
"type": "integer"
|
"type": "integer",
|
||||||
|
"minimum": 0
|
||||||
},
|
},
|
||||||
"list_id": {
|
"list_id": {
|
||||||
"description": "The list this bucket belongs to.",
|
"description": "The list this bucket belongs to.",
|
||||||
|
|
|
@ -7187,7 +7187,8 @@
|
||||||
},
|
},
|
||||||
"limit": {
|
"limit": {
|
||||||
"description": "How many tasks can be at the same time on this board max",
|
"description": "How many tasks can be at the same time on this board max",
|
||||||
"type": "integer"
|
"type": "integer",
|
||||||
|
"minimum": 0
|
||||||
},
|
},
|
||||||
"list_id": {
|
"list_id": {
|
||||||
"description": "The list this bucket belongs to.",
|
"description": "The list this bucket belongs to.",
|
||||||
|
|
|
@ -91,6 +91,7 @@ definitions:
|
||||||
type: boolean
|
type: boolean
|
||||||
limit:
|
limit:
|
||||||
description: How many tasks can be at the same time on this board max
|
description: How many tasks can be at the same time on this board max
|
||||||
|
minimum: 0
|
||||||
type: integer
|
type: integer
|
||||||
list_id:
|
list_id:
|
||||||
description: The list this bucket belongs to.
|
description: The list this bucket belongs to.
|
||||||
|
|
Loading…
Reference in a new issue