Add a "done" option to kanban buckets (#821)
Co-authored-by: kolaente <k@knt.li> Reviewed-on: https://kolaente.dev/vikunja/api/pulls/821 Co-authored-by: konrad <konrad@kola-entertainments.de> Co-committed-by: konrad <konrad@kola-entertainments.de>
This commit is contained in:
@ -7189,6 +7189,10 @@ var doc = `{
|
||||
"description": "The unique, numeric id of this bucket.",
|
||||
"type": "integer"
|
||||
},
|
||||
"is_done_bucket": {
|
||||
"description": "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.",
|
||||
"type": "boolean"
|
||||
},
|
||||
"limit": {
|
||||
"description": "How many tasks can be at the same time on this board max",
|
||||
"type": "integer"
|
||||
|
@ -7172,6 +7172,10 @@
|
||||
"description": "The unique, numeric id of this bucket.",
|
||||
"type": "integer"
|
||||
},
|
||||
"is_done_bucket": {
|
||||
"description": "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.",
|
||||
"type": "boolean"
|
||||
},
|
||||
"limit": {
|
||||
"description": "How many tasks can be at the same time on this board max",
|
||||
"type": "integer"
|
||||
|
@ -81,6 +81,9 @@ definitions:
|
||||
id:
|
||||
description: The unique, numeric id of this bucket.
|
||||
type: integer
|
||||
is_done_bucket:
|
||||
description: 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.
|
||||
type: boolean
|
||||
limit:
|
||||
description: How many tasks can be at the same time on this board max
|
||||
type: integer
|
||||
|
Reference in New Issue
Block a user