fixing routes

This commit is contained in:
Saeed Vaziry
2024-10-07 00:18:11 +02:00
parent a94d1d42d2
commit 8bf1cc141e
22 changed files with 70 additions and 522 deletions

View File

@ -3,10 +3,6 @@
use App\Http\Controllers\ConsoleController;
use Illuminate\Support\Facades\Route;
Route::get('/', function () {
return redirect()->route('login');
});
Route::middleware('auth')->group(function () {
Route::post('/{server}/console', [ConsoleController::class, 'run'])->name('servers.console.run');
});