mirror of
https://github.com/snipe/snipe-it.git
synced 2025-03-05 20:52:15 -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(
|
Route::get(
|
||||||
'password/reset/{token}',
|
'password/reset/{token}',
|
||||||
[ResetPasswordController::class, 'showResetForm']
|
[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(
|
Route::post(
|
||||||
|
|
Loading…
Reference in a new issue