From bf5e8c95b41663b8928846ea741d0b980dab971a Mon Sep 17 00:00:00 2001 From: Devansh Date: Wed, 13 Oct 2021 12:34:21 +0530 Subject: [PATCH] Added Missing Throttling Key --- config/auth.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config/auth.php b/config/auth.php index d2dcb9cb5..222c860df 100755 --- a/config/auth.php +++ b/config/auth.php @@ -50,11 +50,13 @@ return [ 'provider' => 'admins', 'table' => 'admin_password_resets', 'expire' => 60, + 'throttle' => 60, ], 'customers' => [ 'provider' => 'customers', 'table' => 'customer_password_resets', 'expire' => 60, + 'throttle' => 60, ], ], ];