Skip to content

Commit

Permalink
Add missing rate limiter.
Browse files Browse the repository at this point in the history
  • Loading branch information
JC5 committed Jul 23, 2021
1 parent cb759e5 commit afc9f4b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/Http/Controllers/Auth/LoginController.php
Expand Up @@ -29,6 +29,7 @@
use FireflyIII\Providers\RouteServiceProvider;
use Illuminate\Contracts\View\Factory;
use Illuminate\Foundation\Auth\AuthenticatesUsers;
use Illuminate\Foundation\Auth\ThrottlesLogins;
use Illuminate\Http\JsonResponse;
use Illuminate\Http\RedirectResponse;
use Illuminate\Http\Request;
Expand All @@ -47,7 +48,7 @@
*/
class LoginController extends Controller
{
use AuthenticatesUsers;
use AuthenticatesUsers, ThrottlesLogins;

/**
* Where to redirect users after login.
Expand Down

0 comments on commit afc9f4b

Please sign in to comment.