mirror of
https://github.com/bs-community/blessing-skin-server.git
synced 2024-12-15 06:09:58 +08:00
Fix validating captcha
This commit is contained in:
parent
b343707978
commit
b3876468b2
@ -140,8 +140,9 @@ class AuthController extends Controller
|
||||
|
||||
public function handleForgot(Request $request, UserRepository $users)
|
||||
{
|
||||
if (! $this->checkCaptcha($request))
|
||||
return json(trans('auth.validation.captcha'), 1);
|
||||
$this->validate($request, [
|
||||
'captcha' => 'required'.(app()->environment('testing') ? '' : '|captcha')
|
||||
]);
|
||||
|
||||
if (config('mail.driver') == "")
|
||||
return json(trans('auth.forgot.close'), 1);
|
||||
|
@ -372,17 +372,9 @@ class AuthControllerTest extends TestCase
|
||||
{
|
||||
Mail::fake();
|
||||
|
||||
// Should return a warning if `captcha` is wrong
|
||||
$this->withSession(['phrase' => 'a'])->postJson('/auth/forgot', [
|
||||
'captcha' => 'b'
|
||||
])->assertJson([
|
||||
'errno' => 1,
|
||||
'msg' => trans('auth.validation.captcha')
|
||||
]);
|
||||
|
||||
// Should be forbidden if "forgot password" is closed
|
||||
config(['mail.driver' => '']);
|
||||
$this->withSession(['phrase' => 'a'])->postJson('/auth/forgot', [
|
||||
$this->postJson('/auth/forgot', [
|
||||
'captcha' => 'a'
|
||||
])->assertJson([
|
||||
'errno' => 1,
|
||||
|
Loading…
Reference in New Issue
Block a user