mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-10 07:16:16 +01:00
bbe469169b
This is a pre-patch for adding a CRUD plugin for tea records. This property contains only the UID of the owner FE user, but not a relation to a FE user model. This is because we neither have nor need a FE user model for the purposes of the CRUD plugin.
11 lines
191 B
PHP
11 lines
191 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
\TTN\Tea\Domain\Model\Product\Tea::class => [
|
|
'properties' => [
|
|
'ownerUid' => ['fieldName' => 'owner'],
|
|
],
|
|
],
|
|
];
|