forked from Alex/Pterodactyl-Panel
14 lines
452 B
PHP
14 lines
452 B
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Route;
|
|
|
|
Route::get('/authenticate/{token}', 'ValidateKeyController@index');
|
|
Route::post('/download-file', 'FileDownloadController@index');
|
|
|
|
// Routes for the Wings daemon.
|
|
Route::post('/sftp/auth', 'SftpAuthenticationController');
|
|
Route::group(['prefix' => '/servers/{uuid}'], function () {
|
|
Route::get('/', 'Servers\ServerDetailsController');
|
|
Route::get('/install', 'Servers\ServerInstallController');
|
|
});
|