31 lines
708 B
PHP
31 lines
708 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests;
|
|
|
|
use App\Services\TemporaryFileService;
|
|
use Illuminate\Contracts\Validation\ValidationRule;
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
|
|
class TemporaryFileUploadRequest extends FormRequest
|
|
{
|
|
/**
|
|
* Determine if the user is authorized to make this request.
|
|
*/
|
|
public function authorize(): bool
|
|
{
|
|
return $this->user()->can('create', TemporaryFileService::class );
|
|
}
|
|
|
|
/**
|
|
* Get the validation rules that apply to the request.
|
|
*
|
|
* @return array<string, ValidationRule|array<mixed>|string>
|
|
*/
|
|
public function rules(): array
|
|
{
|
|
return [
|
|
'file' => 'required|file|max:100000'
|
|
];
|
|
}
|
|
}
|