1
1
mirror of https://github.com/pterodactyl/panel.git synced 2024-11-23 09:32:29 +01:00
Pterodactyl-Panel/app/Transformers/Api/Client/SubuserTransformer.php

29 lines
666 B
PHP
Raw Normal View History

2019-11-03 21:20:11 +01:00
<?php
namespace Pterodactyl\Transformers\Api\Client;
use Pterodactyl\Models\Subuser;
2022-12-15 01:05:46 +01:00
use Pterodactyl\Transformers\Api\Transformer;
2019-11-03 21:20:11 +01:00
2022-12-15 01:05:46 +01:00
class SubuserTransformer extends Transformer
2019-11-03 21:20:11 +01:00
{
/**
* Return the resource name for the JSONAPI output.
*/
public function getResourceName(): string
{
return Subuser::RESOURCE_NAME;
}
/**
* Transforms a subuser into a model that can be shown to a front-end user.
2019-11-03 21:20:11 +01:00
*/
public function transform(Subuser $model): array
2019-11-03 21:20:11 +01:00
{
return array_merge(
2022-12-15 01:05:46 +01:00
(new UserTransformer())->transform($model->user),
['permissions' => $model->permissions]
);
2019-11-03 21:20:11 +01:00
}
}