mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-09 23:24:06 -08:00
Remove throttle from GET in password reset
Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
parent
2f258a3e3d
commit
17ee332715
|
@ -449,7 +449,7 @@ Route::group(['middleware' => 'web'], function () {
|
|||
Route::get(
|
||||
'password/reset/{token}',
|
||||
[ResetPasswordController::class, 'showResetForm']
|
||||
)->name('password.reset')->middleware('throttle:'.config('auth.passwords.users.throttle.password_max_attempts').','.config('auth.passwords.users.throttle.lockout_duration'));
|
||||
)->name('password.reset');
|
||||
|
||||
|
||||
Route::post(
|
||||
|
|
Loading…
Reference in a new issue