1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-22 01:11:34 +02:00
invoiceninja/app/Http/Requests/ClientGatewayToken/ListClientGatewayTokenRequest.php

31 lines
686 B
PHP
Raw Normal View History

2023-01-20 23:59:00 +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-20 23:59:00 +01:00
*
* @license https://www.elastic.co/licensing/elastic-license
*/
namespace App\Http\Requests\ClientGatewayToken;
use App\Http\Requests\Request;
class ListClientGatewayTokenRequest extends Request
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize() : bool
{
2023-09-25 13:49:11 +02:00
/** @var \App\Models\User $user */
$user = auth()->user();
return $user->isAdmin();
2023-01-20 23:59:00 +01:00
}
}