mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-20 14:34:44 +02:00
24 lines
777 B
PHP
24 lines
777 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\Api\Application\Servers;
|
|
|
|
use App\Models\Server;
|
|
use App\Transformers\Api\Application\ServerTransformer;
|
|
use App\Http\Controllers\Api\Application\ApplicationApiController;
|
|
use App\Http\Requests\Api\Application\Servers\GetExternalServerRequest;
|
|
|
|
class ExternalServerController extends ApplicationApiController
|
|
{
|
|
/**
|
|
* Retrieve a specific server from the database using its external ID.
|
|
*/
|
|
public function index(GetExternalServerRequest $request, string $external_id): array
|
|
{
|
|
$server = Server::query()->where('external_id', $external_id)->firstOrFail();
|
|
|
|
return $this->fractal->item($server)
|
|
->transformWith($this->getTransformer(ServerTransformer::class))
|
|
->toArray();
|
|
}
|
|
}
|