mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-10-31 05:36:51 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			784 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			784 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace Pterodactyl\Http\Controllers\Api\Application\Nodes;
 | |
| 
 | |
| use Pterodactyl\Models\Node;
 | |
| use Illuminate\Http\JsonResponse;
 | |
| use Pterodactyl\Http\Requests\Api\Application\Nodes\GetNodeRequest;
 | |
| use Pterodactyl\Http\Controllers\Api\Application\ApplicationApiController;
 | |
| 
 | |
| class NodeConfigurationController extends ApplicationApiController
 | |
| {
 | |
|     /**
 | |
|      * Returns the configuration information for a node. This allows for automated deployments
 | |
|      * to remote machines so long as an API key is provided to the machine to make the request
 | |
|      * with, and the node is known.
 | |
|      *
 | |
|      * @return \Illuminate\Http\JsonResponse
 | |
|      */
 | |
|     public function __invoke(GetNodeRequest $request, Node $node)
 | |
|     {
 | |
|         return JsonResponse::create($node->getConfiguration());
 | |
|     }
 | |
| }
 | 
