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:
Dane Everitt 2017-04-02 16:51:56 -04:00
parent c071efd008
commit 65630bdcce
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
15 changed files with 315 additions and 22 deletions

View file

@ -37,7 +37,7 @@ class OverviewTransformer extends TransformerAbstract
public function transform(Server $server)
{
return [
'uuidShort' => $server->uuidShort,
'id' => $server->uuidShort,
'uuid' => $server->uuid,
'name' => $server->name,
'node' => $server->node->name,