Skip to content

Commit 7ce63ae

Browse files
authored
Merge pull request #555 from AndreScara11/add-security-helper-to-bootstrap-routes
Add SecurityHelper to Bootstrap.php classMap
2 parents 3633402 + 43eddfe commit 7ce63ae

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

CHANGELOG.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,16 @@
22

33
## dev
44

5-
- Enh: Changed exception thrown in PasswordRecoveryService from `RuntimeException` to `NotFoundException`. (eseperio)
5+
- Enh: Changed exception thrown in PasswordRecoveryService from `RuntimeException` to `NotFoundException`. (eseperio)
6+
- Ehh: Added SecurityHelper to the Bootstrap classMap
67

78
## 1.6.3 Mar 18th, 2024
89

910
- Fix: Update last_login_at and last_login_ip on social networt authenticate (e.luhr)
1011
- Enh: Keycloak auth client (e.luhr)
1112
- Fix: Social Network Auth (eluhr)
1213
- Enh #532: /user/registration/register now shows form validation errors
13-
- Enh: Allow/suggest new v3 releases of 2amigos 2fa dependencies: 2fa-library, qrcode-library (TonisOrmisson)
14+
- Enh: Allow/suggest new v3 releases of 2amigos 2fa dependencies: 2fa-library, qrcode-library (TonisOrmisson)
1415
- Enh: Added option to disable viewing any other user's profile for non-admin users (TonisOrmisson)
1516
- Ehn: updated Estonian (et) translation by (TonisOrmisson)
1617
- Ehn: use recaptcha.net instead of google.com (Eseperio)

src/User/Bootstrap.php

+3
Original file line numberDiff line numberDiff line change
@@ -417,6 +417,9 @@ protected function buildClassMap(array $userClassMap)
417417
'Da\User\Service' => [
418418
'MailService',
419419
],
420+
'Da\User\Helper' => [
421+
'SecurityHelper',
422+
]
420423
];
421424

422425
$mapping = array_merge($defaults, $userClassMap);

0 commit comments

Comments
 (0)