koel/app/Http/Controllers/API/Download/PlaylistController.php
2020-04-12 10:18:17 +02:00

26 lines
511 B
PHP

<?php
namespace App\Http\Controllers\API\Download;
use App\Models\Playlist;
use Illuminate\Auth\Access\AuthorizationException;
/**
* @group 6. Download
*/
class PlaylistController extends Controller
{
/**
* Download a whole playlist
*
* @response []
*
* @throws AuthorizationException
*/
public function show(Playlist $playlist)
{
$this->authorize('owner', $playlist);
return response()->download($this->downloadService->from($playlist));
}
}