misc_pterodactyl-panel/routes/api-remote.php

14 lines
452 B
PHP
Raw Normal View History

<?php
use Illuminate\Support\Facades\Route;
Route::get('/authenticate/{token}', 'ValidateKeyController@index');
Route::post('/download-file', 'FileDownloadController@index');
2019-12-08 00:14:04 +00:00
// Routes for the Wings daemon.
Route::post('/sftp/auth', 'SftpAuthenticationController');
Route::group(['prefix' => '/servers/{uuid}'], function () {
Route::get('/', 'Servers\ServerDetailsController');
2020-01-18 23:26:15 +00:00
Route::get('/install', 'Servers\ServerInstallController');
});