3
0
mirror of https://github.com/snipe/snipe-it.git synced 2026-02-05 12:35:40 +00:00

Constrain to "uploaded" action_type

This commit is contained in:
Marcus Moore
2025-10-01 14:37:36 -07:00
parent 9404dff79c
commit 4bbbd786cd

View File

@ -193,8 +193,12 @@ class UploadedFilesController extends Controller
// Check for the file
$log = Actionlog::find($file_id)->where('item_type', self::$map_object_type[$object_type])
->where('item_id', $object->id)->first();
$log = Actionlog::query()
->where('id', $file_id)
->where('action_type', 'uploaded')
->where('item_type', self::$map_object_type[$object_type])
->where('item_id', $object->id)
->first();
if ($log) {
// Check the file actually exists, and delete it
@ -213,4 +217,4 @@ class UploadedFilesController extends Controller
return response()->json(Helper::formatStandardApiResponse('error', null, trans_choice('general.file_upload_status.delete.error', 1)), 500);
}
}
}