mirror of
https://github.com/pterodactyl/panel.git
synced 2024-11-22 17:12:30 +01:00
23 lines
820 B
PHP
23 lines
820 B
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Route;
|
|
|
|
// Routes for the Wings daemon.
|
|
Route::post('/sftp/auth', 'SftpAuthenticationController');
|
|
|
|
Route::get('/servers', 'Servers\ServerDetailsController@list');
|
|
|
|
Route::group(['prefix' => '/servers/{uuid}'], function () {
|
|
Route::get('/', 'Servers\ServerDetailsController');
|
|
Route::get('/install', 'Servers\ServerInstallController@index');
|
|
Route::post('/install', 'Servers\ServerInstallController@store');
|
|
|
|
Route::post('/archive', 'Servers\ServerTransferController@archive');
|
|
Route::get('/transfer/failure', 'Servers\ServerTransferController@failure');
|
|
Route::get('/transfer/success', 'Servers\ServerTransferController@success');
|
|
});
|
|
|
|
Route::group(['prefix' => '/backups'], function () {
|
|
Route::post('/{backup}', 'Backups\BackupStatusController');
|
|
});
|