mirror of
https://github.com/vitodeploy/vito.git
synced 2025-07-01 05:56:16 +00:00
add enable/disable services
This commit is contained in:
@ -119,6 +119,8 @@
|
||||
Route::get('/{server}/services/{service}/start', [ServiceController::class, 'start'])->name('servers.services.start');
|
||||
Route::get('/{server}/services/{service}/stop', [ServiceController::class, 'stop'])->name('servers.services.stop');
|
||||
Route::get('/{server}/services/{service}/restart', [ServiceController::class, 'restart'])->name('servers.services.restart');
|
||||
Route::get('/{server}/services/{service}/enable', [ServiceController::class, 'enable'])->name('servers.services.enable');
|
||||
Route::get('/{server}/services/{service}/disable', [ServiceController::class, 'disable'])->name('servers.services.disable');
|
||||
});
|
||||
|
||||
// settings
|
||||
|
Reference in New Issue
Block a user