mirror of
https://github.com/koel/koel
synced 2024-12-22 10:33:16 +00:00
18 lines
400 B
PHP
18 lines
400 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Http\Controllers\Download;
|
||
|
|
||
|
use App\Http\Controllers\Controller;
|
||
|
use App\Models\Playlist;
|
||
|
use App\Services\DownloadService;
|
||
|
|
||
|
class DownloadPlaylistController extends Controller
|
||
|
{
|
||
|
public function __invoke(Playlist $playlist, DownloadService $download)
|
||
|
{
|
||
|
$this->authorize('own', $playlist);
|
||
|
|
||
|
return response()->download($download->from($playlist));
|
||
|
}
|
||
|
}
|