mirror of
https://github.com/go-vikunja/vikunja.git
synced 2026-04-29 08:27:02 +00:00
17 lines
273 B
TypeScript
17 lines
273 B
TypeScript
import {Factory} from '../support/factory'
|
|
|
|
export class LabelTaskFactory extends Factory {
|
|
static table = 'label_tasks'
|
|
|
|
static factory() {
|
|
const now = new Date()
|
|
|
|
return {
|
|
id: '{increment}',
|
|
task_id: 1,
|
|
label_id: 1,
|
|
created: now.toISOString(),
|
|
}
|
|
}
|
|
}
|