Skip to content

Commit 2a57dee

Browse files
committed
actionValidatePasswordStrength password is now nullable
1 parent 8c14400 commit 2a57dee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/V1Module/presenters/ForgottenPasswordPresenter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ public function actionChange()
110110
* Check if a password is strong enough
111111
* @POST
112112
*/
113-
#[Post("password", new VString(), "The password to be checked")]
113+
#[Post("password", new VString(), "The password to be checked", nullable: true)]
114114
public function actionValidatePasswordStrength()
115115
{
116116
$password = $this->getRequest()->getPost("password");

0 commit comments

Comments
 (0)