mirror of
https://github.com/snipe/snipe-it.git
synced 2024-12-31 16:37:27 -08:00
Harden asset checkout validation by requiring ints
This commit is contained in:
parent
30b481bc93
commit
fcbd5dcae5
|
@ -22,9 +22,9 @@ class AssetCheckoutRequest extends Request
|
||||||
public function rules()
|
public function rules()
|
||||||
{
|
{
|
||||||
$rules = [
|
$rules = [
|
||||||
'assigned_user' => 'required_without_all:assigned_asset,assigned_location',
|
'assigned_user' => 'integer|required_without_all:assigned_asset,assigned_location',
|
||||||
'assigned_asset' => 'required_without_all:assigned_user,assigned_location',
|
'assigned_asset' => 'integer|required_without_all:assigned_user,assigned_location',
|
||||||
'assigned_location' => 'required_without_all:assigned_user,assigned_asset',
|
'assigned_location' => 'integer|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…
Reference in a new issue