mirror of
https://github.com/MrUnknownDE/panel.git
synced 2026-04-08 17:33:49 +02:00
15 lines
329 B
PHP
15 lines
329 B
PHP
<?php
|
|
|
|
namespace Pterodactyl\Http\Requests\Api\Client\Servers\Network;
|
|
|
|
use Pterodactyl\Models\Permission;
|
|
use Pterodactyl\Http\Requests\Api\Client\ClientApiRequest;
|
|
|
|
class NewAllocationRequest extends ClientApiRequest
|
|
{
|
|
public function permission(): string
|
|
{
|
|
return Permission::ACTION_ALLOCATION_CREATE;
|
|
}
|
|
}
|