Add /api/client/servers/{server}/files/chmod endpoint

This commit is contained in:
Matthew Penner 2020-11-29 13:49:29 -07:00
parent 77abfd01ec
commit 8611ebb2d6
4 changed files with 80 additions and 0 deletions

View file

@ -64,6 +64,7 @@ Route::group(['prefix' => '/servers/{server}', 'middleware' => [AuthenticateServ
Route::post('/decompress', 'Servers\FileController@decompress');
Route::post('/delete', 'Servers\FileController@delete');
Route::post('/create-folder', 'Servers\FileController@create');
Route::post('/chmod', 'Servers\FileController@chmod');
Route::get('/upload', 'Servers\FileUploadController');
});