Merge pull request #15892 from marcusmoore/bug/harden-checkout-validation

Hardened asset checkout validation by requiring integer
This commit is contained in:
snipe 2024-11-27 14:55:11 +00:00 committed by GitHub
commit 46be1ada60
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -24,9 +24,9 @@ class AssetCheckoutRequest extends Request
$settings = \App\Models\Setting::getSettings();
$rules = [
'assigned_user' => 'required_without_all:assigned_asset,assigned_location',
'assigned_asset' => 'required_without_all:assigned_user,assigned_location',
'assigned_location' => 'required_without_all:assigned_user,assigned_asset',
'assigned_user' => 'integer|required_without_all:assigned_asset,assigned_location',
'assigned_asset' => 'integer|required_without_all:assigned_user,assigned_location',
'assigned_location' => 'integer|required_without_all:assigned_user,assigned_asset',
'status_id' => 'exists:status_labels,id,deployable,1',
'checkout_to_type' => 'required|in:asset,location,user',
'checkout_at' => [