mirror of
https://github.com/pixelfed/pixelfed.git
synced 2025-03-10 14:14:49 +00:00
Update ApiV1Dot1Controller, allow iar rate limits to be configurable
This commit is contained in:
parent
b58ed0ad01
commit
28a808031b
1 changed files with 1 additions and 1 deletions
|
@ -470,7 +470,7 @@ class ApiV1Dot1Controller extends Controller
|
||||||
abort_if(BouncerService::checkIp($request->ip()), 404);
|
abort_if(BouncerService::checkIp($request->ip()), 404);
|
||||||
}
|
}
|
||||||
|
|
||||||
$rl = RateLimiter::attempt('pf:apiv1.1:iar:'.$request->ip(), 3, function(){}, 1800);
|
$rl = RateLimiter::attempt('pf:apiv1.1:iar:'.$request->ip(), config('pixelfed.app_registration_rate_limit_attempts', 3), function(){}, config('pixelfed.app_registration_rate_limit_decay', 1800));
|
||||||
abort_if(!$rl, 400, 'Too many requests');
|
abort_if(!$rl, 400, 'Too many requests');
|
||||||
|
|
||||||
$this->validate($request, [
|
$this->validate($request, [
|
||||||
|
|
Loading…
Add table
Reference in a new issue