2021-08-05 04:55:15 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Pterodactyl\Http\Requests\Api\Client;
|
|
|
|
|
2021-08-05 05:36:57 +01:00
|
|
|
class AccountApiRequest extends ClientApiRequest
|
2021-08-05 04:55:15 +01:00
|
|
|
{
|
|
|
|
public function permission(): string
|
|
|
|
{
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
|
|
|
public function authorize(): bool
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|