2023-01-22 04:49:15 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2023-01-28 23:21:40 +01:00
|
|
|
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
2023-01-22 04:49:15 +01:00
|
|
|
*
|
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Http\Requests\BankTransaction;
|
|
|
|
|
|
|
|
use App\Http\Requests\Request;
|
|
|
|
|
|
|
|
class BulkBankTransactionRequest extends Request
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function authorize() : bool
|
|
|
|
{
|
2023-08-02 23:33:35 +02:00
|
|
|
/** @var \App\Models\User $user **/
|
|
|
|
$user = auth()->user();
|
|
|
|
|
|
|
|
return $user->isAdmin();
|
2023-01-22 04:49:15 +01:00
|
|
|
}
|
|
|
|
|
2023-08-02 23:33:35 +02:00
|
|
|
public function rules(): array
|
2023-01-22 04:49:15 +01:00
|
|
|
{
|
|
|
|
return [
|
|
|
|
'ids' => 'required|bail|array',
|
2023-08-02 23:33:35 +02:00
|
|
|
'action' => 'in:archive,restore,delete,convert_matched,unlink'
|
2023-01-22 04:49:15 +01:00
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|