2019-08-07 02:44:38 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2019-08-07 02:44:38 +02:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2020-01-07 01:13:47 +01:00
|
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-08-07 02:44:38 +02:00
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Http\Requests\ClientPortal;
|
|
|
|
|
|
|
|
use App\Http\Requests\Request;
|
2019-08-07 05:07:06 +02:00
|
|
|
use Zend\Diactoros\Response\JsonResponse;
|
2019-08-07 02:44:38 +02:00
|
|
|
|
|
|
|
class StoreDocumentRequest extends Request
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function authorize() : bool
|
|
|
|
{
|
2019-08-08 13:18:02 +02:00
|
|
|
return true;
|
2019-08-07 02:44:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function rules()
|
|
|
|
{
|
|
|
|
return [
|
2020-09-06 11:38:10 +02:00
|
|
|
'file' => 'required|max:10000|mimes:png,svg,jpeg,gif,jpg,bmp',
|
2019-08-07 02:44:38 +02:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|
2019-08-07 05:07:06 +02:00
|
|
|
public function response(array $errors)
|
|
|
|
{
|
|
|
|
return new JsonResponse(['error' => $errors], 400);
|
|
|
|
}
|
2019-08-07 02:44:38 +02:00
|
|
|
}
|