summaryrefslogtreecommitdiff
path: root/routes
diff options
context:
space:
mode:
authorhorus2020-09-16 11:22:13 +0200
committerhorus2020-09-16 11:22:13 +0200
commit04e5136a9ee8c38fb2399fa5f00ff02f6f4d7c16 (patch)
treed4f2e6e7e361cd6a5766fad2f45b6310e6eba94f /routes
parentfec5158cd4b1b18151759257ce967ef809294506 (diff)
downloadsenpai-04e5136a9ee8c38fb2399fa5f00ff02f6f4d7c16.tar.gz
bug fix in routes/web.php
Diffstat (limited to 'routes')
-rw-r--r--routes/web.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/routes/web.php b/routes/web.php
index b65ab52..f6c086d 100644
--- a/routes/web.php
+++ b/routes/web.php
@@ -13,7 +13,7 @@
#Route::get('/', 'IndexController@showPage');
Route::get('/', function(){
- return redirect()->route('anime_index'); });
+ return redirect()->route('airing_anime'); });
Route::get('/ical/{username}', 'IndexController@ical');
Route::get('/create/user/{param}', 'IndexController@createUser');
Route::get('/save', 'IndexController@saveWatchingAnime');