Merge pull request #5227 from devansh-webkul/throttling-added

Added missing throttling key
This commit is contained in:
Devansh 2021-10-13 12:57:07 +05:30 committed by GitHub
commit 8de51c7207
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -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,
],
],
];