Skip to content

Commit 1b94e15

Browse files
authored
Merge pull request #11055 from nanaya/home-root
Move home url to root instead of subdirectory
2 parents 7e1fd8b + 680ab47 commit 1b94e15

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

routes/web.php

+3-2
Original file line numberDiff line numberDiff line change
@@ -378,9 +378,10 @@
378378
});
379379
});
380380

381-
Route::get('/home', 'HomeController@index')->name('home');
381+
// TODO: update to redirect to root later
382+
Route::get('/home', 'HomeController@index');
382383

383-
route_redirect('/', 'home');
384+
Route::get('/', 'HomeController@index')->name('home');
384385

385386
if ($GLOBALS['cfg']['osu']['scores']['rank_cache']['local_server']) {
386387
Route::get('rankLookup', 'ScoresController@userRankLookup');

tests/Browser/LoginTest.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public function testLogin()
2727
->type('password', 'password') // User factory generates users with the password hardcoded as 'password'
2828
->press('Sign in')
2929
->waitFor('.user-home')
30-
->assertPathIs('/home')
30+
->assertPathIs('/')
3131
->assertSee('dashboard')
3232
->assertSee('account settings')
3333
->assertDontSee('Incorrect sign in');
@@ -50,7 +50,7 @@ public function testLogout()
5050
->click('.js-user-header-popup .js-logout-link') // click the logout 'button'
5151
->acceptDialog()
5252
->waitFor('.landing-hero__bg-container')
53-
->assertPathIs('/home')
53+
->assertPathIs('/')
5454
->assertVisible('.landing-hero');
5555
});
5656
}

tests/RouteTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class RouteTest extends TestCase
1717
*/
1818
public function testHomeRoutes()
1919
{
20-
$this->assertGetRoutes(['/home']);
20+
$this->assertGetRoutes(['/']);
2121
}
2222

2323
/**

0 commit comments

Comments
 (0)