31 lines
626 B
PHP
31 lines
626 B
PHP
<?php
|
|
|
|
namespace Pterodactyl\Http\Requests\Api\Client\Servers\Network;
|
|
|
|
use Pterodactyl\Models\Allocation;
|
|
use Pterodactyl\Models\Permission;
|
|
use Pterodactyl\Http\Requests\Api\Client\ClientApiRequest;
|
|
|
|
class UpdateAllocationRequest extends ClientApiRequest
|
|
{
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function permission(): string
|
|
{
|
|
return Permission::ACTION_ALLOCATION_UPDATE;
|
|
}
|
|
|
|
/**
|
|
* @return array
|
|
*/
|
|
public function rules(): array
|
|
{
|
|
$rules = Allocation::getRules();
|
|
|
|
return [
|
|
'notes' => array_merge($rules['notes'], ['present']),
|
|
];
|
|
}
|
|
}
|