mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 13:42:49 +01:00
26 lines
460 B
PHP
26 lines
460 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Http\Requests\TaskScheduler;
|
||
|
|
||
|
use App\Http\Requests\Request;
|
||
|
|
||
|
class UpdateScheduledJobRequest 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(): array
|
||
|
{
|
||
|
return [
|
||
|
'action_name' => 'sometimes|string',
|
||
|
];
|
||
|
}
|
||
|
}
|