Add endpoint needed for recieving and processing activity

This commit is contained in:
DaneEveritt 2022-07-09 17:45:38 -04:00
parent 9b8479e85d
commit 1eee55b27c
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
3 changed files with 170 additions and 0 deletions

View file

@ -8,6 +8,7 @@ Route::post('/sftp/auth', Remote\SftpAuthenticationController::class);
Route::get('/servers', [Remote\Servers\ServerDetailsController::class, 'list']);
Route::post('/servers/reset', [Remote\Servers\ServerDetailsController::class, 'resetState']);
Route::post('/activity', Remote\ActivityProcessingController::class);
Route::group(['prefix' => '/servers/{uuid}'], function () {
Route::get('/', Remote\Servers\ServerDetailsController::class);