mirror of
https://github.com/MrUnknownDE/panel.git
synced 2026-04-09 09:53:44 +02:00
Move API to use JSON:API standards and fractal serializer
Makes the data slightly more complex, but forces a standard and can always be changed down the road simply by changing the default serializer.
This commit is contained in:
@@ -46,13 +46,15 @@ class ServerController extends Controller
|
||||
$server = Server::byUuid($uuid);
|
||||
$fractal = Fractal::create()->item($server);
|
||||
|
||||
if ($request->input('with')) {
|
||||
$fractal->parseIncludes(collect(explode(',', $request->input('with')))->intersect([
|
||||
if ($request->input('include')) {
|
||||
$fractal->parseIncludes(collect(explode(',', $request->input('include')))->intersect([
|
||||
'allocations', 'subusers', 'stats',
|
||||
])->toArray());
|
||||
}
|
||||
|
||||
return $fractal->transformWith(new ServerTransformer)->toArray();
|
||||
return $fractal->transformWith(new ServerTransformer)
|
||||
->withResourceName('server')
|
||||
->toArray();
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user