2020-10-12 22:42:02 +02:00
|
|
|
<?php
|
2020-10-22 08:46:02 +02:00
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2024-04-12 06:15:41 +02:00
|
|
|
* @copyright Copyright (c) 2024. Invoice Ninja LLC (https://invoiceninja.com)
|
2020-10-22 08:46:02 +02:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2020-10-22 08:46:02 +02:00
|
|
|
*/
|
|
|
|
|
2020-10-12 22:42:02 +02:00
|
|
|
namespace App\Http\Requests\Task;
|
|
|
|
|
2020-11-25 15:19:52 +01:00
|
|
|
use App\Http\Requests\Request;
|
2020-10-12 22:42:02 +02:00
|
|
|
|
2020-10-22 08:46:02 +02:00
|
|
|
class BulkTaskRequest extends Request
|
2020-10-12 22:42:02 +02:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function authorize()
|
|
|
|
{
|
2023-11-18 08:28:28 +01:00
|
|
|
return true;
|
2020-10-12 22:42:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the validation rules that apply to the request.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function rules()
|
|
|
|
{
|
2024-01-14 05:05:00 +01:00
|
|
|
|
2023-11-18 08:28:28 +01:00
|
|
|
return [
|
|
|
|
'action' => 'required|string',
|
|
|
|
'ids' => 'required|array',
|
|
|
|
'template' => 'sometimes|string',
|
|
|
|
'template_id' => 'sometimes|string',
|
|
|
|
'send_email' => 'sometimes|bool'
|
|
|
|
];
|
2020-10-12 22:42:02 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
}
|