diff --git a/CHANGELOG.md b/CHANGELOG.md index 9197825c..f6d31486 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,8 @@ ## dev -- Enh: Changed exception thrown in PasswordRecoveryService from `RuntimeException` to `NotFoundException`. (eseperio) +- Enh: Changed exception thrown in PasswordRecoveryService from `RuntimeException` to `NotFoundException`. (eseperio) +- Ehh: Added SecurityHelper to the Bootstrap classMap ## 1.6.3 Mar 18th, 2024 @@ -10,7 +11,7 @@ - Enh: Keycloak auth client (e.luhr) - Fix: Social Network Auth (eluhr) - Enh #532: /user/registration/register now shows form validation errors -- Enh: Allow/suggest new v3 releases of 2amigos 2fa dependencies: 2fa-library, qrcode-library (TonisOrmisson) +- Enh: Allow/suggest new v3 releases of 2amigos 2fa dependencies: 2fa-library, qrcode-library (TonisOrmisson) - Enh: Added option to disable viewing any other user's profile for non-admin users (TonisOrmisson) - Ehn: updated Estonian (et) translation by (TonisOrmisson) - Ehn: use recaptcha.net instead of google.com (Eseperio) diff --git a/src/User/Bootstrap.php b/src/User/Bootstrap.php index 1b92e446..e9bbc90b 100755 --- a/src/User/Bootstrap.php +++ b/src/User/Bootstrap.php @@ -417,6 +417,9 @@ protected function buildClassMap(array $userClassMap) 'Da\User\Service' => [ 'MailService', ], + 'Da\User\Helper' => [ + 'SecurityHelper', + ] ]; $mapping = array_merge($defaults, $userClassMap);