Reduce overhead of health check endpoints

This commit is contained in:
Constantin Graf
2024-09-12 14:02:19 +02:00
committed by Constantin Graf
parent d3545b3c73
commit cc10af0b97
4 changed files with 17 additions and 4 deletions

View File

@@ -3,7 +3,6 @@
declare(strict_types=1);
use App\Http\Controllers\Web\DashboardController;
use App\Http\Controllers\Web\HealthCheckController;
use App\Http\Controllers\Web\HomeController;
use Illuminate\Support\Facades\Route;
use Inertia\Inertia;
@@ -64,6 +63,3 @@ Route::middleware([
})->name('import');
});
Route::get('health-check/up', [HealthCheckController::class, 'up']);
Route::get('health-check/debug', [HealthCheckController::class, 'debug']);