improved email throttle

This commit is contained in:
Denis Duliçi
2022-09-14 11:53:22 +03:00
parent bf2f83981c
commit eb3b080ee8
7 changed files with 92 additions and 41 deletions

View File

@ -25,7 +25,10 @@ return [
'throttles' => [
'api' => env('APP_THROTTLES_API', '60'),
'import' => env('APP_THROTTLES_IMPORT', '1'),
'email' => env('APP_THROTTLES_EMAIL', '1'),
'email' => [
'minute' => env('APP_THROTTLES_EMAIL_MINUTE', '3'),
'month' => env('APP_THROTTLES_EMAIL_MONTH', '500'),
],
],
/*