mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-10-15 01:39:42 +00:00
35 lines
908 B
PHP
35 lines
908 B
PHP
<?php
|
|
|
|
/**
|
|
* Chill is a software for social workers
|
|
*
|
|
* For the full copyright and license information, please view
|
|
* the LICENSE file that was distributed with this source code.
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Chill\MainBundle\Controller;
|
|
|
|
use Chill\MainBundle\CRUD\Controller\ApiController;
|
|
use Symfony\Component\HttpFoundation\Request;
|
|
|
|
/**
|
|
* Class LocationApiController.
|
|
*/
|
|
class LocationApiController extends ApiController
|
|
{
|
|
public function customizeQuery(string $action, Request $request, $query): void
|
|
{
|
|
$query
|
|
->leftJoin('e.locationType', 'lt')
|
|
->andWhere(
|
|
$query->expr()->andX(
|
|
$query->expr()->eq('e.availableForUsers', "'TRUE'"),
|
|
$query->expr()->eq('lt.availableForUsers', "'TRUE'"),
|
|
$query->expr()->eq('e.active', "'TRUE'"),
|
|
)
|
|
);
|
|
}
|
|
}
|