Skip to content
Permalink
Browse files
Throttle password reset requests to 5 every 60 seconds
Signed-off-by: snipe <snipe@snipe.net>
  • Loading branch information
snipe committed Oct 8, 2021
1 parent 1c77fd0 commit 7027912
Showing 1 changed file with 1 addition and 0 deletions.
@@ -29,6 +29,7 @@ class ForgotPasswordController extends Controller
public function __construct()
{
$this->middleware('guest');
$this->middleware('throttle:5,60', ['except' => 'showLinkRequestForm']);
}

/**

0 comments on commit 7027912

Please sign in to comment.