Skip to content

Commit

Permalink
fix: keep master branch default index
Browse files Browse the repository at this point in the history
  • Loading branch information
Anankke committed Jun 30, 2019
1 parent c5e0f9d commit e827700
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/routes.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
// Home
$app->post('/spay_back', App\Services\Payment::class . ':notify');
$app->get('/spay_back', App\Services\Payment::class . ':notify');
$app->get('/', App\Controllers\HomeController::class . ':index');
$app->get('/', App\Controllers\HomeController::class . ':indexold');
$app->get('/indexold', App\Controllers\HomeController::class . ':indexold');
$app->get('/404', App\Controllers\HomeController::class . ':page404');
$app->get('/405', App\Controllers\HomeController::class . ':page405');
Expand Down

1 comment on commit e827700

@stardock
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

excellent.

Please sign in to comment.