mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
INA-3 | Request class for creating scheduled task
This commit is contained in:
parent
09b895dfcb
commit
b3bf078f4c
@ -0,0 +1,32 @@
|
||||
<?php
|
||||
|
||||
|
||||
namespace App\Http\Requests\TaskScheduler;
|
||||
|
||||
|
||||
use App\Http\Requests\Request;
|
||||
|
||||
class CreateScheduledTaskRequest extends Request
|
||||
{
|
||||
/**
|
||||
* Determine if the user is authorized to make this request.
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
public function authorize(): bool
|
||||
{
|
||||
return auth()->user()->isAdmin();
|
||||
}
|
||||
|
||||
public function rules()
|
||||
{
|
||||
return [
|
||||
'paused' => 'sometimes|bool',
|
||||
'archived' => 'sometimes|bool',
|
||||
'repeat_every' => 'required|string|in:DAY,WEEK,MONTH,3MONTHS,YEAR',
|
||||
'start_from' => 'sometimes|string',
|
||||
'job' => 'required',
|
||||
|
||||
];
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user