mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-06 02:33:48 +00:00
35 lines
738 B
PHP
35 lines
738 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests\FileFunctions;
|
|
|
|
use App\Rules\MimetypeBlacklistValidation;
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
use Illuminate\Support\Facades\Auth;
|
|
|
|
class UploadRequest extends FormRequest
|
|
{
|
|
/**
|
|
* 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 [
|
|
'is_last' => 'sometimes|boolean',
|
|
'folder_id' => 'uuid|nullable',
|
|
'file' => ['required', 'file', new MimetypeBlacklistValidation]
|
|
];
|
|
}
|
|
}
|