From c6f4354fdbe084bf378044869f1a4d34f9820fcf Mon Sep 17 00:00:00 2001 From: Andras Bacsai <5845193+andrasbacsai@users.noreply.github.com> Date: Mon, 16 Jun 2025 13:12:57 +0200 Subject: [PATCH] fix(routes): add name to security route for improved route management --- routes/web.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routes/web.php b/routes/web.php index 564ecbb31..cbcf33e11 100644 --- a/routes/web.php +++ b/routes/web.php @@ -255,7 +255,7 @@ Route::get('/proxy/logs', ProxyLogs::class)->name('server.proxy.logs'); Route::get('/terminal', ExecuteContainerCommand::class)->name('server.command'); Route::get('/docker-cleanup', DockerCleanup::class)->name('server.docker-cleanup'); - Route::get('/security', fn () => redirect(route('dashboard'))); + Route::get('/security', fn () => redirect(route('dashboard')))->name('server.security'); Route::get('/security/patches', Patches::class)->name('server.security.patches'); }); Route::get('/destinations', DestinationIndex::class)->name('destination.index');