mirror of
https://github.com/pelican-dev/panel.git
synced 2026-03-01 11:21:31 +03:00
12 lines
180 B
PHP
12 lines
180 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Pterodactyl\Http\Requests\Api\Client;
|
||
|
|
|
||
|
|
class GetServersRequest extends ClientApiRequest
|
||
|
|
{
|
||
|
|
public function authorize(): bool
|
||
|
|
{
|
||
|
|
return true;
|
||
|
|
}
|
||
|
|
}
|