fix: rename isEnabled to enabled in DQL query

This commit is contained in:
Maël Gangloff 2025-10-25 20:03:51 +02:00
parent 76da56dd83
commit 557ca7d71a
No known key found for this signature in database
GPG Key ID: 11FDC81C24A7F629

View File

@ -29,7 +29,7 @@ class WatchlistRepository extends ServiceEntityRepository
{
return $this->createQueryBuilder('w')
->select()
->where('w.isEnabled = true')
->where('w.enabled = true')
->getQuery()->execute();
}