Skip to content
This repository has been archived by the owner on Aug 11, 2022. It is now read-only.

Commit

Permalink
Temporarily redirect home to /response
Browse files Browse the repository at this point in the history
  • Loading branch information
tristan-orourke committed Apr 6, 2020
1 parent 129042b commit 55772e9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion routes/web.php
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,10 @@ function (): void {
Route::post('/2fa', 'Auth\TwoFactorController@redirectToExpected')->name('2fa');

/* Home */
Route::get('/', 'HomepageController@applicant')->name('home');
// Route::get('/', 'HomepageController@applicant')->name('home');
Route::get('/', function () {
return redirect()->route('response.index');
})->name('home');

/* Jobs */
Route::get('jobs', 'JobController@index')->name('jobs.index');
Expand Down

0 comments on commit 55772e9

Please sign in to comment.