mirror of
https://github.com/koel/koel
synced 2024-12-21 01:53:11 +00:00
27c4aaf2ba
This reverts commit 1cccffd6ce
.
24 lines
486 B
PHP
24 lines
486 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\API\Download;
|
|
|
|
use App\Models\Artist;
|
|
|
|
/**
|
|
* @group 6. Download
|
|
*/
|
|
class ArtistController extends Controller
|
|
{
|
|
/**
|
|
* Download all songs by an artist
|
|
*
|
|
* Don't see why one would need this, really.
|
|
* Let's pray to God the user doesn't trigger this on Elvis.
|
|
*
|
|
* @response []
|
|
*/
|
|
public function show(Artist $artist)
|
|
{
|
|
return response()->download($this->downloadService->from($artist));
|
|
}
|
|
}
|