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

Commit

Permalink
Merge branch 'release/1.2.1' into release/1.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
gggrant committed Apr 15, 2020
2 parents 48470e3 + 55772e9 commit b96a310
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/Http/ViewComposers/FooterComposer.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class FooterComposer
/**
* @var string Shown in the footer as the date the site was last modified.
*/
const DATE_MODIFIED = '2020-02-03';
const DATE_MODIFIED = '2020-03-31';

/**
* Bind data to the view.
Expand Down
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 b96a310

Please sign in to comment.