Fixed: [activity] fetch all the available location, beyond the first page

This commit is contained in:
2023-02-08 14:42:16 +00:00
committed by Julien Fastré
parent af5f27ff49
commit 68f7a832b4
2 changed files with 6 additions and 12 deletions

View File

@@ -28,7 +28,7 @@ class LocationController extends CRUDController
protected function customizeQuery(string $action, Request $request, $query): void
{
$query->where('e.availableForUsers = true'); //TODO not working
$query->where('e.availableForUsers = "TRUE"');
}
protected function orderQuery(string $action, $query, Request $request, PaginatorInterface $paginator)