Update UpdatePasswordRequest.php

This commit is contained in:
Lance Pioch 2020-04-08 03:00:03 -04:00 committed by GitHub
parent 78e03cb9b2
commit 53c7ec9126
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -34,9 +34,6 @@ class UpdatePasswordRequest extends ClientApiRequest
{
$rules = User::getRulesForUpdate($this->user());
return [
'password' => array_merge($rules['password'], ['confirmed']),
'new_password' => 'required|string',
];
return ['password' => array_merge($rules['password'], ['confirmed'])];
}
}