mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
17 lines
386 B
PHP
17 lines
386 B
PHP
<?php
|
|
|
|
namespace BookStack\Http\Middleware;
|
|
|
|
use Illuminate\Routing\Middleware\ThrottleRequests as Middleware;
|
|
|
|
class ThrottleApiRequests extends Middleware
|
|
{
|
|
/**
|
|
* Resolve the number of attempts if the user is authenticated or not.
|
|
*/
|
|
protected function resolveMaxAttempts($request, $maxAttempts)
|
|
{
|
|
return (int) config('api.requests_per_minute');
|
|
}
|
|
}
|