1
0

chore: rename js files to ts

This commit is contained in:
Dominik Pschenitschni
2022-04-11 22:37:56 +02:00
committed by Gitea
parent 7fe9f17e43
commit 321850ec20
36 changed files with 0 additions and 0 deletions

View File

@ -0,0 +1,17 @@
import {Factory} from '../support/factory'
import {formatISO} from 'date-fns'
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: formatISO(now),
}
}
}