mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-09 16:24:51 +00:00
Update web routes, fix missing home route
This commit is contained in:
parent
c2f6073e6a
commit
a9f4ddfc5a
1 changed files with 1 additions and 1 deletions
|
@ -135,7 +135,7 @@ Route::domain(config('portfolio.domain'))->group(function () {
|
||||||
|
|
||||||
Route::domain(config('pixelfed.domain.app'))->middleware(['validemail', 'twofactor', 'localization'])->group(function () {
|
Route::domain(config('pixelfed.domain.app'))->middleware(['validemail', 'twofactor', 'localization'])->group(function () {
|
||||||
Route::get('/', 'SiteController@home')->name('timeline.personal');
|
Route::get('/', 'SiteController@home')->name('timeline.personal');
|
||||||
Route::redirect('/home', '/');
|
Route::redirect('/home', '/')->name('home');
|
||||||
|
|
||||||
Auth::routes();
|
Auth::routes();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue