mirror of
https://github.com/koel/koel
synced 2024-12-21 01:53:11 +00:00
19 lines
335 B
PHP
19 lines
335 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);
|
||
|
}
|
||
|
}
|