mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-11-22 07:12:36 +00:00
794671ef32
Following Laravel guidance and GitHub diff. Not yet in tested state with app-specific changes made.
17 lines
391 B
PHP
17 lines
391 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): int
|
|
{
|
|
return (int) config('api.requests_per_minute');
|
|
}
|
|
}
|