Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
snipe committed Nov 22, 2023
2 parents f12efcf + eae98d3 commit 10d867c
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
4 changes: 3 additions & 1 deletion app/Http/Controllers/Api/AssetsController.php
Original file line number Diff line number Diff line change
Expand Up @@ -534,8 +534,10 @@ public function selectlist(Request $request)
* @since [v4.0]
* @return \Illuminate\Http\JsonResponse
*/
public function store(StoreAssetRequest $request)
public function store(ImageUploadRequest $request)
{
return Gate::allows('create', new Asset);

$asset = new Asset();
$asset->model()->associate(AssetModel::find((int) $request->get('model_id')));

Expand Down
20 changes: 20 additions & 0 deletions app/Models/Category.php
Original file line number Diff line number Diff line change
Expand Up @@ -247,6 +247,26 @@ public function getEula()
}
}

/**
* -----------------------------------------------
* BEGIN MUTATORS
* -----------------------------------------------
**/

/**
* This sets the checkin_value to a boolean 0 or 1. This accounts for forms or API calls that
* explicitly pass the checkin_email field but it has a null or empty value.
*
* This will also correctly parse a 1/0 if "true"/"false" is passed.
*
* @param $value
* @return void
*/
public function setCheckinEmailAttribute($value)
{
$this->attributes['checkin_email'] = (int) filter_var($value, FILTER_VALIDATE_BOOLEAN);
}

/**
* -----------------------------------------------
* BEGIN QUERY SCOPES
Expand Down

0 comments on commit 10d867c

Please sign in to comment.