mirror of
https://github.com/pterodactyl/panel.git
synced 2024-11-23 01:22:30 +01:00
38 lines
863 B
PHP
38 lines
863 B
PHP
<?php
|
|
|
|
namespace Pterodactyl\Transformers\Api\Client;
|
|
|
|
use Pterodactyl\Models\User;
|
|
|
|
class AccountTransformer extends BaseClientTransformer
|
|
{
|
|
/**
|
|
* Return the resource name for the JSONAPI output.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getResourceName(): string
|
|
{
|
|
return 'user';
|
|
}
|
|
|
|
/**
|
|
* Return basic information about the currently logged in user.
|
|
*
|
|
* @param \Pterodactyl\Models\User $model
|
|
* @return array
|
|
*/
|
|
public function transform(User $model)
|
|
{
|
|
return [
|
|
'id' => $model->id,
|
|
'admin' => $model->root_admin,
|
|
'username' => $model->username,
|
|
'email' => $model->email,
|
|
'first_name' => $model->name_first,
|
|
'last_name' => $model->name_last,
|
|
'language' => $model->language,
|
|
];
|
|
}
|
|
}
|