test fixes

This commit is contained in:
Dennis Eichhorn 2023-09-23 15:51:58 +00:00
parent c43adce9a3
commit 714c05fc07
2 changed files with 2 additions and 1 deletions

View File

@ -40,7 +40,7 @@ final class EmployeeMapper extends DataMapperFactory
public const COLUMNS = [
'hr_staff_id' => ['name' => 'hr_staff_id', 'type' => 'int', 'internal' => 'id'],
'hr_staff_profile' => ['name' => 'hr_staff_profile', 'type' => 'int', 'internal' => 'profile'],
'hr_staff_smiPHash' => ['name' => 'hr_staff_smiPHash', 'type' => 'string', 'internal' => 'semiPrivateHash'],
'hr_staff_smiPHash' => ['name' => 'hr_staff_smiPHash', 'type' => 'string', 'internal' => 'semiPrivateHash', 'private' => true],
'hr_staff_image' => ['name' => 'hr_staff_image', 'type' => 'int', 'internal' => 'image', 'annotations' => ['gdpr' => true]],
];

View File

@ -47,4 +47,5 @@ return ['HumanResourceManagement' => [
'Unit' => 'Einheit',
'Vacation' => 'Urlaub',
'Work' => 'Arbeiten',
'IMG_alt_staff' => 'Mitarbeiterfoto',
]];