We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b5f9e5f commit db1ad71Copy full SHA for db1ad71
1 file changed
modules/Users/Routes/Web.php
@@ -21,10 +21,10 @@
21
Route::group(array('middleware' => 'guest'), function ()
22
{
23
// The One-Time Authentication.
24
- Route::get( 'authorize', 'TokenLogins@index');
25
- Route::post('authorize', 'TokenLogins@process');
+ Route::get( 'authorize', 'LoginTokens@index');
+ Route::post('authorize', 'LoginTokens@process');
26
27
- Route::get('authorize/{hash}/{time}/{token}', 'TokenLogins@login');
+ Route::get('authorize/{hash}/{time}/{token}', 'LoginTokens@login');
28
29
// The Password Reminder.
30
Route::get( 'password/remind', 'PasswordReminders@remind');
0 commit comments