WIP backend userOrMePicker

This commit is contained in:
2025-03-11 05:34:20 +01:00
parent ec5c4d51b3
commit b2b1865837
2 changed files with 13 additions and 2 deletions

View File

@@ -66,7 +66,7 @@ class EntityToJsonTransformer implements DataTransformerInterface
]);
}
private function denormalizeOne(array $item)
private function denormalizeOne(array|string $item)
{
if (!\array_key_exists('type', $item)) {
throw new TransformationFailedException('the key "type" is missing on element');
@@ -76,6 +76,17 @@ class EntityToJsonTransformer implements DataTransformerInterface
throw new TransformationFailedException('the key "id" is missing on element');
}
if ('me' === $item) {
// return the denormalized current user
/* return
$this->denormalizer->denormalize(
['type' => $item['type'], 'id' => $item['id']],
User::class,
'json',
$context,
);*/
}
$class = match ($this->type) {
'user' => User::class,
'person' => Person::class,