startAt -> startsAt

This commit is contained in:
syuilo
2023-02-15 14:31:59 +09:00
parent 71c42bef9b
commit e24b0ceb80
6 changed files with 16 additions and 16 deletions

View File

@ -262,7 +262,7 @@ export default class extends Endpoint<typeof meta, typeof paramDef> {
const ads = await this.adsRepository.find({
where: {
expiresAt: MoreThan(new Date()),
startAt: LessThanOrEqual(new Date()),
startsAt: LessThanOrEqual(new Date()),
},
});