koel/app/Http/Controllers/Download/PlaylistController.php
2020-10-26 16:29:29 +01:00

15 lines
305 B
PHP

<?php
namespace App\Http\Controllers\Download;
use App\Models\Playlist;
class PlaylistController extends Controller
{
public function show(Playlist $playlist)
{
$this->authorize('owner', $playlist);
return response()->download($this->downloadService->from($playlist));
}
}