fix(views): do not map bucket id from xorm
continuous-integration/drone/push Build was killed Details

This commit is contained in:
kolaente 2024-03-20 10:41:58 +01:00
parent 19c9cd9bc2
commit 97b7592e7c
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 1 additions and 1 deletions

View File

@ -114,7 +114,7 @@ type Task struct {
// The bucket id. Will only be populated when the task is accessed via a view with buckets.
// Can be used to move a task between buckets. In that case, the new bucket must be in the same view as the old one.
BucketID int64 `xorm:"<-" json:"bucket_id"`
BucketID int64 `xorm:"-" json:"bucket_id"`
// The position of the task - any task project can be sorted as usual by this parameter.
// When accessing tasks via views with buckets, this is primarily used to sort them based on a range.