2016-03-05 09:01:12 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Requests\API;
|
|
|
|
|
2016-08-03 10:42:11 +00:00
|
|
|
/**
|
|
|
|
* @property array songs
|
|
|
|
* @property array data
|
|
|
|
*/
|
2016-03-05 09:01:12 +00:00
|
|
|
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',
|
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|