mirror of
https://github.com/koel/koel
synced 2024-12-20 17:43:36 +00:00
23 lines
395 B
PHP
23 lines
395 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests\API\Download;
|
|
|
|
use App\Http\Requests\API\Request as BaseRequest;
|
|
|
|
class Request extends BaseRequest
|
|
{
|
|
/**
|
|
* Determine if the user is authorized to make this request.
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function authorize()
|
|
{
|
|
return env('ALLOW_DOWNLOAD', true);
|
|
}
|
|
|
|
public function rules()
|
|
{
|
|
return [];
|
|
}
|
|
}
|