koel/app/Http/Requests/API/SongUpdateRequest.php

32 lines
566 B
PHP
Raw Normal View History

2016-03-05 09:01:12 +00:00
<?php
namespace App\Http\Requests\API;
use App\Http\Requests\API\Request;
class SongUpdateRequest extends Request
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return $this->user()->is_admin;
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
'data' => 'required|array',
'songs' => 'required|array',
];
}
}