1
0
Fork 0
This commit is contained in:
Daniel Supernault 2019-11-30 18:34:55 -07:00
parent 575c4dd7e5
commit 67a90ee18d
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 2 additions and 2 deletions

View File

@ -193,11 +193,11 @@ class BaseApiController extends Controller
]);
}
public function showTempMedia(Request $request, int $profileId, $mediaId, $timestamp)
public function showTempMedia(Request $request, $profileId, $mediaId, $timestamp)
{
abort_if(!$request->user(), 403);
abort_if(!$request->hasValidSignature(), 404);
abort_if(Auth::user()->profile_id !== $profileId, 404);
abort_if(Auth::user()->profile_id != $profileId, 404);
$media = Media::whereProfileId(Auth::user()->profile_id)->findOrFail($mediaId);
$path = storage_path('app/'.$media->media_path);
return response()->file($path);