Fix some routes

Names of some of the routes overlapped with others in an incompatible
way. This makes the names more distinct
This commit is contained in:
Scarzy 2024-05-26 19:00:22 +01:00
parent 91c1e53e52
commit b9d56a8ecc

View file

@ -563,14 +563,14 @@ Route::group(['prefix' => 'v1', 'middleware' => ['api', 'throttle:api']], functi
Api\AssetFilesController::class,
'show'
]
)->name('api.assets.files');
)->name('api.assets.file');
Route::delete('{asset_id}/file/{file_id}',
[
Api\AssetFilesController::class,
'destroy'
]
)->name('api.assets.files');
)->name('api.assets.file');
});