2020-04-09 20:48:04 +10:00
|
|
|
<?php
|
|
|
|
|
/**
|
2020-09-06 19:38:10 +10:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2020-04-09 20:48:04 +10:00
|
|
|
*
|
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
|
*
|
2022-04-27 13:20:41 +10:00
|
|
|
* @copyright Copyright (c) 2022. Invoice Ninja LLC (https://invoiceninja.com)
|
2020-04-09 20:48:04 +10:00
|
|
|
*
|
2021-06-16 16:58:16 +10:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2020-04-09 20:48:04 +10:00
|
|
|
*/
|
|
|
|
|
|
2020-07-06 21:22:36 +10:00
|
|
|
namespace App\Http\Requests\Webhook;
|
2020-04-09 20:48:04 +10:00
|
|
|
|
|
|
|
|
use App\Http\Requests\Request;
|
|
|
|
|
|
2020-07-06 21:22:36 +10:00
|
|
|
class CreateWebhookRequest extends Request
|
2020-04-09 20:48:04 +10:00
|
|
|
{
|
|
|
|
|
/**
|
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
|
*
|
|
|
|
|
* @return bool
|
|
|
|
|
*/
|
|
|
|
|
public function authorize() : bool
|
|
|
|
|
{
|
|
|
|
|
return auth()->user()->isAdmin();
|
|
|
|
|
}
|
|
|
|
|
}
|