2015-12-13 04:42:28 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Requests\API;
|
|
|
|
|
2017-06-04 01:12:08 +00:00
|
|
|
/**
|
|
|
|
* @property string media_path
|
|
|
|
*/
|
2015-12-13 04:42:28 +00:00
|
|
|
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 [
|
2015-12-15 16:28:54 +00:00
|
|
|
'media_path' => 'string|required|path.valid',
|
2015-12-13 04:42:28 +00:00
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|