Add basic server activity log view
This commit is contained in:
parent
0b4936ff1c
commit
2f1c8ae91d
8 changed files with 153 additions and 2 deletions
|
@ -62,6 +62,7 @@ Route::group([
|
|||
Route::get('/', [Client\Servers\ServerController::class, 'index'])->name('api:client:server.view');
|
||||
Route::get('/websocket', Client\Servers\WebsocketController::class)->name('api:client:server.ws');
|
||||
Route::get('/resources', Client\Servers\ResourceUtilizationController::class)->name('api:client:server.resources');
|
||||
Route::get('/activity', Client\Servers\ActivityLogController::class)->name('api:client:server.activity');
|
||||
|
||||
Route::post('/command', [Client\Servers\CommandController::class, 'index']);
|
||||
Route::post('/power', [Client\Servers\PowerController::class, 'index']);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue