mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-29 18:20:01 +00:00
Move authentication around.
This commit is contained in:
@@ -265,13 +265,13 @@ Route::group(
|
||||
['middleware' => 'web'], function () {
|
||||
Route::auth();
|
||||
|
||||
Route::get('/home', 'HomeController@index');
|
||||
//Route::get('/home', 'HomeController@index');
|
||||
}
|
||||
);
|
||||
|
||||
|
||||
Route::group(
|
||||
['middleware' => ['auth', 'range', 'web']], function () {
|
||||
['middleware' => ['range', 'web']], function () {
|
||||
|
||||
/**
|
||||
* Home Controller
|
||||
|
Reference in New Issue
Block a user