From 4e84134f5a0646d353b3e4befe8a6cadbfeeb712 Mon Sep 17 00:00:00 2001 From: Yee Jia Wei Date: Sat, 25 Feb 2023 04:14:06 +0800 Subject: [PATCH] remove rate_limit option in api config --- config/api.php | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/config/api.php b/config/api.php index d374a644c..bbff4122c 100644 --- a/config/api.php +++ b/config/api.php @@ -156,20 +156,4 @@ return [ */ 'middleware' => explode(',', env('API_MIDDLEWARE', 'api')), - - /* - |-------------------------------------------------------------------------- - | Rate Limit (Throttle) - |-------------------------------------------------------------------------- - | - | Consumers of your API can be limited to the amount of requests they can - | make. You can create your own throttles or simply change the default - | throttles. - | - */ - - 'rate_limit' => [ - Limit::perMinute(env('API_RATE_LIMIT', 60)), - ], - ];