Added legacy redirector
This commit is contained in:
parent
b7d3b65bae
commit
d19cc9d9c1
2 changed files with 12 additions and 0 deletions
|
@ -309,4 +309,9 @@ class LoginController extends Controller
|
||||||
$lockoutTime
|
$lockoutTime
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function legacyAuthRedirect() {
|
||||||
|
return redirect()->route('login');
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -278,6 +278,13 @@ Route::group(['middleware' => ['web','auth','authorize:reports.view']], function
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Route::get(
|
||||||
|
'auth/signin',
|
||||||
|
['uses' => 'Auth\LoginController@legacyAuthRedirect' ]
|
||||||
|
);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
|
|
Loading…
Add table
Reference in a new issue