mirror of
https://github.com/pterodactyl/panel.git
synced 2024-11-22 17:12:30 +01:00
30 lines
701 B
PHP
30 lines
701 B
PHP
<?php
|
|
|
|
namespace Pterodactyl\Transformers\Api\Client;
|
|
|
|
use Pterodactyl\Models\Allocation;
|
|
use Pterodactyl\Transformers\Api\Transformer;
|
|
|
|
class AllocationTransformer extends Transformer
|
|
{
|
|
/**
|
|
* Return the resource name for the JSONAPI output.
|
|
*/
|
|
public function getResourceName(): string
|
|
{
|
|
return 'allocation';
|
|
}
|
|
|
|
public function transform(Allocation $model): array
|
|
{
|
|
return [
|
|
'id' => $model->id,
|
|
'ip' => $model->ip,
|
|
'ip_alias' => $model->ip_alias,
|
|
'port' => $model->port,
|
|
'notes' => $model->notes,
|
|
'is_default' => $model->server->allocation_id === $model->id,
|
|
];
|
|
}
|
|
}
|