feat: only shows top level monitors on dashboard and children on dedicated page

This commit is contained in:
Brock H Caldwell
2025-11-05 22:35:12 -06:00
parent 55ab9d840e
commit a9031df3c3
4 changed files with 21 additions and 1 deletions

View File

@@ -53,6 +53,7 @@ final class MonitorList extends AbstractController
return $this->asPaginator($this->monitorRepository->createQueryBuilder('m')
->andWhere('m.status IN (:statuses)')
->andWhere('(m.title LIKE :term OR m.imdbId LIKE :term OR m.monitorType LIKE :term OR m.status LIKE :term)')
->andWhere('m.parent IS NULL')
->setParameter('statuses', ['New', 'In Progress', 'Active'])
->setParameter('term', '%'.$this->term.'%')
->orderBy('m.id', 'DESC')