diff --git a/Models/EmployeeMapper.php b/Models/EmployeeMapper.php index af14905..708bb2b 100755 --- a/Models/EmployeeMapper.php +++ b/Models/EmployeeMapper.php @@ -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]], ]; diff --git a/Theme/Backend/Lang/de.lang.php b/Theme/Backend/Lang/de.lang.php index 4148aea..9d84f2a 100755 --- a/Theme/Backend/Lang/de.lang.php +++ b/Theme/Backend/Lang/de.lang.php @@ -47,4 +47,5 @@ return ['HumanResourceManagement' => [ 'Unit' => 'Einheit', 'Vacation' => 'Urlaub', 'Work' => 'Arbeiten', + 'IMG_alt_staff' => 'Mitarbeiterfoto', ]];