From 7b565e7fa748c063772bcef6b3fa783a0c4aaea9 Mon Sep 17 00:00:00 2001 From: ncoronel Date: Fri, 24 Jul 2026 15:17:18 -0300 Subject: [PATCH] feat(routes): remove welcome route to streamline authentication flow --- routes/web.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/routes/web.php b/routes/web.php index 88ad0e9..f17dfc6 100644 --- a/routes/web.php +++ b/routes/web.php @@ -6,6 +6,3 @@ use Illuminate\Support\Facades\Route; Route::get('/auth/google/redirect', [GoogleAuthController::class, 'redirect'])->name('auth.google.redirect'); Route::get('/api/auth/google/callback', [GoogleAuthController::class, 'callback'])->name('auth.google.callback'); -Route::get('/', function () { - return view('welcome'); -});