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:
parent
c071efd008
commit
65630bdcce
15 changed files with 315 additions and 22 deletions
|
@ -27,7 +27,7 @@ namespace Pterodactyl\Http\Controllers\API\User;
|
|||
use Fractal;
|
||||
use Illuminate\Http\Request;
|
||||
use Pterodactyl\Http\Controllers\Controller;
|
||||
use Pterodactyl\Transformers\User\ServerTransformer;
|
||||
use Pterodactyl\Transformers\User\OverviewTransformer;
|
||||
|
||||
class CoreController extends Controller
|
||||
{
|
||||
|
@ -41,6 +41,9 @@ class CoreController extends Controller
|
|||
{
|
||||
$servers = $request->user()->access('service', 'node', 'allocation', 'option')->get();
|
||||
|
||||
return Fractal::collection($servers)->transformWith(new ServerTransformer)->toArray();
|
||||
return Fractal::collection($servers)
|
||||
->transformWith(new OverviewTransformer)
|
||||
->withResourceName('server')
|
||||
->toArray();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue