2018-02-24 18:15:21 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Pterodactyl\Http\Requests\Api\Application\Servers;
|
|
|
|
|
|
|
|
use Pterodactyl\Services\Acl\Api\AdminAcl;
|
|
|
|
use Pterodactyl\Http\Requests\Api\Application\ApplicationApiRequest;
|
|
|
|
|
|
|
|
class GetServerRequest extends ApplicationApiRequest
|
|
|
|
{
|
2021-01-24 22:30:58 +00:00
|
|
|
protected string $resource = AdminAcl::RESOURCE_SERVERS;
|
|
|
|
protected int $permission = AdminAcl::READ;
|
2018-02-24 18:15:21 +00:00
|
|
|
}
|