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

@ -8,7 +8,6 @@ export interface IBucket extends IAbstract {
projectId: number
limit: number
tasks: ITask[]
isDoneBucket: boolean
position: number
count: number

View File

@ -19,6 +19,7 @@ export interface IProject extends IAbstract {
position: number
backgroundBlurHash: string
parentProjectId: number
doneBucketId: number
created: Date
updated: Date