Improved file downloading
This commit is contained in:
parent
3fb739c4e4
commit
59fb0eae4f
7 changed files with 83 additions and 196 deletions
16
app/Http/Routes/RemoteRoutes.php
Normal file
16
app/Http/Routes/RemoteRoutes.php
Normal file
|
@ -0,0 +1,16 @@
|
|||
<?php
|
||||
|
||||
namespace Pterodactyl\Http\Routes;
|
||||
|
||||
use Illuminate\Routing\Router;
|
||||
use Request;
|
||||
|
||||
class RemoteRoutes {
|
||||
|
||||
public function map(Router $router) {
|
||||
$router->group(['prefix' => 'remote'], function () use ($router) {
|
||||
$router->post('download', [ 'as' => 'remote.download', 'uses' => 'Remote\RemoteController@postDownload' ]);
|
||||
});
|
||||
}
|
||||
|
||||
}
|
Reference in a new issue