TYPO3 v15 dev-main snapshot ()
This commit is contained in:
@@ -0,0 +1,55 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
\TYPO3\CMS\Beuser\Domain\Model\BackendUser::class => [
|
||||
'tableName' => 'be_users',
|
||||
'properties' => [
|
||||
'userName' => [
|
||||
'fieldName' => 'username',
|
||||
],
|
||||
'isAdministrator' => [
|
||||
'fieldName' => 'admin',
|
||||
],
|
||||
'isDisabled' => [
|
||||
'fieldName' => 'disable',
|
||||
],
|
||||
'realName' => [
|
||||
'fieldName' => 'realName',
|
||||
],
|
||||
'startDateAndTime' => [
|
||||
'fieldName' => 'starttime',
|
||||
],
|
||||
'endDateAndTime' => [
|
||||
'fieldName' => 'endtime',
|
||||
],
|
||||
'lastLoginDateAndTime' => [
|
||||
'fieldName' => 'lastlogin',
|
||||
],
|
||||
'allowedLanguages' => [
|
||||
'fieldName' => 'allowed_languages',
|
||||
],
|
||||
'fileMountPoints' => [
|
||||
'fieldName' => 'file_mountpoints',
|
||||
],
|
||||
'dbMountPoints' => [
|
||||
'fieldName' => 'db_mountpoints',
|
||||
],
|
||||
'backendUserGroups' => [
|
||||
'fieldName' => 'usergroup',
|
||||
],
|
||||
],
|
||||
],
|
||||
\TYPO3\CMS\Beuser\Domain\Model\BackendUserGroup::class => [
|
||||
'tableName' => 'be_groups',
|
||||
'properties' => [
|
||||
'subGroups' => [
|
||||
'fieldName' => 'subgroup',
|
||||
],
|
||||
],
|
||||
],
|
||||
\TYPO3\CMS\Beuser\Domain\Model\FileMount::class => [
|
||||
'tableName' => 'sys_filemounts',
|
||||
],
|
||||
];
|
||||
Reference in New Issue
Block a user