Skip to content
Snippets Groups Projects
Commit 4b318bf4 authored by Torben Hansen's avatar Torben Hansen Committed by Christian Kuhn
Browse files

[TASK] Mark PasswordPolicyValidator as public API


With the introduction of configurable password policies, the
`PasswordPolicyValidator` has been introduced. The class is
however marked as `@internal`, which basically was a mistake.
3rd party extensions providing users the possibility to change
a password should be able to validate the new password against
the globally configured password policy by using the
`isValidPassword()` method in the `PasswordPolicyValidator` class.

The change therefore mark the class as public API by removing
the `@internal` annotation.

Resolves: #101579
Releases: main, 12.4
Signed-off-by: default avatarTorben Hansen <derhansen@gmail.com>
Change-Id: I8869a8465199a2c071d3d780af640a0c903404c3
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/80357


Tested-by: default avatarcore-ci <typo3@b13.com>
Reviewed-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
Tested-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
parent 02fef8db
Branches
Tags
No related merge requests found
......@@ -22,8 +22,6 @@ use TYPO3\CMS\Core\PasswordPolicy\Validator\Dto\ContextData;
/**
* Validates a password using validators configured in $GLOBALS['TYPO3_CONF_VARS']['SYS']['passwordPolicies'].
* The class must be instantiated with an action (see PasswordPolicyAction) and a password policy name.
*
* @internal only to be used within ext:core, not part of TYPO3 Core API.
*/
class PasswordPolicyValidator
{
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment