fix: includes missing files from last commit

This commit is contained in:
Brock H Caldwell
2026-02-06 15:23:18 -06:00
parent f4644d40ef
commit 7958f50ff7
2 changed files with 35 additions and 2 deletions

View File

@@ -123,4 +123,16 @@ class DownloadRepository extends ServiceEntityRepository
->getQuery()
->getResult();
}
public function badDownloadUrls()
{
return $this->createQueryBuilder('d')
->select('d.url')
->andWhere('d.status = :status')
->andWhere('d.progress = 100')
->setParameter('status', 'Failed')
->distinct()
->getQuery()
->getResult();
}
}