mirror of
https://github.com/koel/koel
synced 2024-12-01 00:09:17 +00:00
28 lines
505 B
PHP
28 lines
505 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests\API;
|
|
|
|
class SettingRequest extends Request
|
|
{
|
|
/**
|
|
* Determine if the user is authorized to make this request.
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function authorize()
|
|
{
|
|
return auth()->user()->is_admin;
|
|
}
|
|
|
|
/**
|
|
* Get the validation rules that apply to the request.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function rules()
|
|
{
|
|
return [
|
|
'media_path' => 'string|required|path.valid',
|
|
];
|
|
}
|
|
}
|