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