Merge pull request #15908 from snipe/revert-15892-bug/harden-checkout-validation
Revert "Hardened asset checkout validation by requiring integer"
This commit is contained in:
commit
a7d5b3944e
1 changed files with 3 additions and 3 deletions
|
@ -24,9 +24,9 @@ class AssetCheckoutRequest extends Request
|
||||||
$settings = \App\Models\Setting::getSettings();
|
$settings = \App\Models\Setting::getSettings();
|
||||||
|
|
||||||
$rules = [
|
$rules = [
|
||||||
'assigned_user' => 'integer|required_without_all:assigned_asset,assigned_location',
|
'assigned_user' => 'required_without_all:assigned_asset,assigned_location',
|
||||||
'assigned_asset' => 'integer|required_without_all:assigned_user,assigned_location',
|
'assigned_asset' => 'required_without_all:assigned_user,assigned_location',
|
||||||
'assigned_location' => 'integer|required_without_all:assigned_user,assigned_asset',
|
'assigned_location' => 'required_without_all:assigned_user,assigned_asset',
|
||||||
'status_id' => 'exists:status_labels,id,deployable,1',
|
'status_id' => 'exists:status_labels,id,deployable,1',
|
||||||
'checkout_to_type' => 'required|in:asset,location,user',
|
'checkout_to_type' => 'required|in:asset,location,user',
|
||||||
'checkout_at' => [
|
'checkout_at' => [
|
||||||
|
|
Loading…
Add table
Reference in a new issue