mirror of
https://github.com/koel/koel
synced 2024-12-01 08:19:18 +00:00
29 lines
499 B
PHP
29 lines
499 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests\API;
|
|
|
|
class PlaylistStoreRequest extends Request
|
|
{
|
|
/**
|
|
* Determine if the user is authorized to make this request.
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function authorize()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Get the validation rules that apply to the request.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function rules()
|
|
{
|
|
return [
|
|
'name' => 'required',
|
|
'songs' => 'array',
|
|
];
|
|
}
|
|
}
|