mirror of
https://github.com/snipe/snipe-it.git
synced 2025-01-24 12:17:05 -08:00
Support legacy image_source property
This commit is contained in:
parent
fa8b0964ed
commit
febf1ec20f
|
@ -459,6 +459,14 @@ class AssetsController extends Controller
|
||||||
$asset->rtd_location_id = $request->get('rtd_location_id', null);
|
$asset->rtd_location_id = $request->get('rtd_location_id', null);
|
||||||
$asset->location_id = $request->get('rtd_location_id', null);
|
$asset->location_id = $request->get('rtd_location_id', null);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* this is here just legacy reasons. Api\AssetController
|
||||||
|
* used image_source once to allow encoded image uploads.
|
||||||
|
*/
|
||||||
|
if ($request->has('image_source')) {
|
||||||
|
$request->offsetSet('image', $request->offsetGet('image_source'));
|
||||||
|
}
|
||||||
|
|
||||||
$asset = $request->handleImages($asset);
|
$asset = $request->handleImages($asset);
|
||||||
|
|
||||||
// Update custom fields in the database.
|
// Update custom fields in the database.
|
||||||
|
|
Loading…
Reference in a new issue