1
0

fix(views): tests for kanban and gantt views

This commit is contained in:
kolaente
2024-03-19 12:11:27 +01:00
parent 511c9aa824
commit cf9b2fa203
8 changed files with 131 additions and 58 deletions

View File

@ -0,0 +1,13 @@
import {Factory} from '../support/factory'
export class TaskBucketFactory extends Factory {
static table = 'task_buckets'
static factory() {
return {
task_id: '{increment}',
bucket_id: '{increment}',
project_view_id: '{increment}',
}
}
}