Add more API routes

Servers: list all, list single
Nodes: list all, list single, list single allocations, add node
Locations: list all
This commit is contained in:
Dane Everitt 2016-01-15 17:54:29 -05:00
parent 0ccaa16ea4
commit 63f377a038
7 changed files with 368 additions and 6 deletions

View file

@ -0,0 +1,33 @@
<?php
namespace Pterodactyl\Http\Controllers\API;
use Illuminate\Http\Request;
use Pterodactyl\Models\Location;
/**
* @Resource("Servers")
*/
class LocationController extends BaseController
{
public function __construct()
{
//
}
/**
* List All Locations
*
* Lists all locations currently on the system.
*
* @Get("/locations")
* @Versions({"v1"})
* @Response(200)
*/
public function getLocations(Request $request)
{
return Location::all();
}
}