mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2026-01-06 06:01:21 +00:00
Update http related classes after upgrade to Laravel 5.2
This commit is contained in:
@@ -260,21 +260,18 @@ Route::bind(
|
||||
);
|
||||
|
||||
|
||||
/**
|
||||
* Auth\AuthController
|
||||
*/
|
||||
Route::get('/register', ['uses' => 'Auth\AuthController@getRegister', 'as' => 'register']);
|
||||
// auth routes, i think
|
||||
Route::group(
|
||||
['middleware' => 'web'], function () {
|
||||
Route::auth();
|
||||
|
||||
Route::controllers(
|
||||
[
|
||||
'auth' => 'Auth\AuthController',
|
||||
'password' => 'Auth\PasswordController',
|
||||
]
|
||||
Route::get('/home', 'HomeController@index');
|
||||
}
|
||||
);
|
||||
|
||||
|
||||
Route::group(
|
||||
['middleware' => ['auth', 'range']], function () {
|
||||
['middleware' => ['auth', 'range', 'web']], function () {
|
||||
|
||||
/**
|
||||
* Home Controller
|
||||
|
||||
Reference in New Issue
Block a user