63f377a038
Servers: list all, list single Nodes: list all, list single, list single allocations, add node Locations: list all
33 lines
535 B
PHP
33 lines
535 B
PHP
<?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();
|
|
}
|
|
|
|
}
|