1
0

feat(kanban): save done bucket with project instead of bucket

This commit is contained in:
kolaente
2023-09-03 15:51:22 +02:00
parent f6d1db3595
commit 3373b5fc45
5 changed files with 15 additions and 10 deletions

View File

@ -12,7 +12,6 @@ export default class BucketModel extends AbstractModel<IBucket> implements IBuck
projectId = ''
limit = 0
tasks: ITask[] = []
isDoneBucket = false
position = 0
count = 0

View File

@ -23,6 +23,7 @@ export default class ProjectModel extends AbstractModel<IProject> implements IPr
position = 0
backgroundBlurHash = ''
parentProjectId = 0
doneBucketId = 0
created: Date = null
updated: Date = null