Fix done bucket json name
continuous-integration/drone/pr Build is passing Details

This commit is contained in:
kolaente 2021-03-23 21:32:43 +01:00
parent 04aae98b9a
commit 0086cf12e5
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
4 changed files with 4 additions and 4 deletions

View File

@ -39,7 +39,7 @@ type Bucket struct {
// How many tasks can be at the same time on this board max
Limit int64 `xorm:"default 0" json:"limit"`
// 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_column"`
IsDoneBucket bool `xorm:"BOOL" json:"is_done_bucket"`
// A timestamp when this bucket was created. You cannot change this value.
Created time.Time `xorm:"created not null" json:"created"`

View File

@ -7189,7 +7189,7 @@ var doc = `{
"description": "The unique, numeric id of this bucket.",
"type": "integer"
},
"is_done_column": {
"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"
},

View File

@ -7172,7 +7172,7 @@
"description": "The unique, numeric id of this bucket.",
"type": "integer"
},
"is_done_column": {
"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"
},

View File

@ -81,7 +81,7 @@ definitions:
id:
description: The unique, numeric id of this bucket.
type: integer
is_done_column:
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: