From 4b2b2cb68e89cebd3ca3ada50d5c1f86cb88f331 Mon Sep 17 00:00:00 2001 From: snipe Date: Thu, 18 Sep 2025 13:58:30 +0100 Subject: [PATCH] Fixed #17891 - missing maintenance file deletion route --- routes/web.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routes/web.php b/routes/web.php index a68923c4b2..30d11e9a96 100644 --- a/routes/web.php +++ b/routes/web.php @@ -725,7 +725,7 @@ Route::group(['middleware' => 'web'], function () { 'destroy' ] )->name('ui.files.destroy') - ->where(['object_type' => 'assets|hardware|models|users|locations|accessories|consumables|licenses|components']); + ->where(['object_type' => 'assets|maintenances|hardware|models|users|locations|accessories|consumables|licenses|components']); });