diff --git a/CHANGELOG.md b/CHANGELOG.md index aaba31a7..b24fb4e0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,14 @@ Releases for CakePHP 4.5 * 13.0.0 * Set dependecy for CakeDC/Auth to 9.0. Perform 2FA refactoring, +* 11.3.5 + * Update ci.yml with php8.2 and php8.3 + * fix: minor fix on last_login datetime format + * Update Permissions.md + * fix: config for updateLastLogin + * fix: remove deprecated code on profile logic + * feat:flash message on login, on cake4 + * 11.3.4 * Fix `Detected invalid UTF-8 for field...` issue when storing session data from `Webauthn` in a mongo database. diff --git a/config/users.php b/config/users.php index 0eff5f52..3f347e18 100644 --- a/config/users.php +++ b/config/users.php @@ -150,6 +150,10 @@ 'id' => null,//default value is the current domain 'checker' => \CakeDC\Auth\Authentication\DefaultWebauthn2FAuthenticationChecker::class, ], + 'TwoFactorProcessors' => [ + \CakeDC\Auth\Authentication\TwoFactorProcessor\Webauthn2faProcessor::class, + \CakeDC\Auth\Authentication\TwoFactorProcessor\OneTimePasswordProcessor::class, + ], // default configuration used to auto-load the Auth Component, override to change the way Auth works 'Auth' => [ 'Authentication' => [