1
0

fix(views): fetch buckets through view

This commit is contained in:
kolaente
2024-03-15 22:49:37 +01:00
parent cb111df2b7
commit ca0550acea
3 changed files with 8 additions and 5 deletions

View File

@ -1,6 +1,7 @@
import type {IAbstract} from './IAbstract'
import type {IUser} from './IUser'
import type {ITask} from './ITask'
import type {IProjectView} from '@/modelTypes/IProjectView'
export interface IBucket extends IAbstract {
id: number
@ -10,6 +11,7 @@ export interface IBucket extends IAbstract {
tasks: ITask[]
position: number
count: number
projectViewId: IProjectView['id']
createdBy: IUser
created: Date