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:
parent
0ccaa16ea4
commit
63f377a038
7 changed files with 368 additions and 6 deletions
33
app/Http/Controllers/API/LocationController.php
Normal file
33
app/Http/Controllers/API/LocationController.php
Normal 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();
|
||||
}
|
||||
|
||||
}
|
Reference in a new issue