31 lines
769 B
PHP
31 lines
769 B
PHP
<?php
|
|
|
|
namespace Pterodactyl\Transformers\Api\Client;
|
|
|
|
use Pterodactyl\Models\WebauthnKey;
|
|
use Pterodactyl\Transformers\Api\Transformer;
|
|
|
|
class WebauthnKeyTransformer extends Transformer
|
|
{
|
|
/**
|
|
* Return the resource name for the JSONAPI output.
|
|
*/
|
|
public function getResourceName(): string
|
|
{
|
|
return WebauthnKey::RESOURCE_NAME;
|
|
}
|
|
|
|
/**
|
|
* Return basic information about the currently logged in user.
|
|
*
|
|
* @param \Pterodactyl\Models\WebauthnKey|\LaravelWebauthn\Models\WebauthnKey $model
|
|
*/
|
|
public function transform($model): array
|
|
{
|
|
return [
|
|
'id' => $model->id,
|
|
'name' => $model->name,
|
|
'created_at' => self::formatTimestamp($model->created_at),
|
|
];
|
|
}
|
|
}
|