Skip to content

Commit

Permalink
Fix reset password routing
Browse files Browse the repository at this point in the history
  • Loading branch information
rjackson committed Aug 2, 2024
1 parent 643c802 commit 7a0121d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion routes/web.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
Route::resource('session', 'SessionController', ['only' => ['create', 'store', 'destroy']]);
Route::get('password/forgotten', ['as' => 'password-reminder.create', 'uses' => 'ReminderController@create']);
Route::post('password/forgotten', ['as' => 'password-reminder.store', 'uses' => 'ReminderController@store']);
Route::get('password/reset/{id}', ['as' => 'password.reset', 'uses' => 'ReminderController@getReset']);
Route::get('password/reset/{token}', ['as' => 'password.reset', 'uses' => 'ReminderController@getReset']);
Route::post('password/reset', ['as' => 'password.reset.complete', 'uses' => 'ReminderController@postReset']);

Route::get('sso/login', ['uses' => 'SessionController@sso_login']);
Expand Down

0 comments on commit 7a0121d

Please sign in to comment.