Updated typo
testing/ogcore-api/pipeline/head There was a failure building this commit Details

pull/54/head
Manuel Aranda Rosales 2025-09-05 09:14:32 +02:00
parent 054591113a
commit 9575055a97
1 changed files with 1 additions and 9 deletions

View File

@ -10,16 +10,8 @@ use ApiPlatform\Metadata\Put;
use ApiPlatform\State\ProcessorInterface;
use ApiPlatform\Validator\ValidatorInterface;
use App\Controller\OgAgent\PartitionAssistantAction;
use App\Dto\Input\MenuInput;
use App\Dto\Input\PartitionInput;
use App\Dto\Input\PartitionPostInput;
use App\Dto\Input\UserGroupInput;
use App\Dto\Output\MenuOutput;
use App\Dto\Output\PartitionOutput;
use App\Dto\Output\UserGroupOutput;
use App\Repository\MenuRepository;
use App\Repository\PartitionRepository;
use App\Repository\UserGroupRepository;
use Symfony\Component\HttpFoundation\JsonResponse;
use Symfony\Component\HttpFoundation\Response;
@ -82,7 +74,7 @@ readonly class PartitionProcessor implements ProcessorInterface
return new JsonResponse($jsonString, Response::HTTP_OK, [], true);
}
return new JsonResponse(data: ['/clients/' . $image->getClient()->getUuid() => ['headers' => []]], status: Response::HTTP_OK);
return new JsonResponse(data: ['/clients/' . '' => ['headers' => []]], status: Response::HTTP_OK);
}
private function processDelete($data, Operation $operation, array $uriVariables = [], array $context = []): null