mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-20 00:34:44 +02:00
12 lines
172 B
PHP
12 lines
172 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests\Api\Client;
|
|
|
|
class GetServersRequest extends ClientApiRequest
|
|
{
|
|
public function authorize(): bool
|
|
{
|
|
return true;
|
|
}
|
|
}
|