Merge pull request #2970 from novag/inline

add 'inline' route to allow embedding uploads
This commit is contained in:
Cüneyt Şentürk
2023-05-31 11:09:21 +03:00
committed by GitHub
3 changed files with 19 additions and 1 deletions

View File

@ -34,6 +34,22 @@ class Uploads extends Controller
return $this->streamMedia($media);
}
public function inline($id)
{
try {
$media = Media::find($id);
} catch (\Exception $e) {
return response(null, 204);
}
// Get file path
if (!$this->getMediaPathOnStorage($media)) {
return response(null, 204);
}
return $this->streamMedia($media, 'inline');
}
/**
* Get the specified resource.
*