mirror of
https://github.com/koel/koel
synced 2024-12-19 17:13:09 +00:00
22 lines
379 B
PHP
22 lines
379 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests\API;
|
|
|
|
/**
|
|
* @property string $media_path
|
|
*/
|
|
class SettingRequest extends Request
|
|
{
|
|
public function authorize(): bool
|
|
{
|
|
return auth()->user()->is_admin;
|
|
}
|
|
|
|
/** @return array<mixed> */
|
|
public function rules(): array
|
|
{
|
|
return [
|
|
'media_path' => 'string|required|path.valid',
|
|
];
|
|
}
|
|
}
|