feat(routes): remove welcome route to streamline authentication flow

This commit is contained in:
2026-07-24 15:17:18 -03:00
parent cb76d1c559
commit 7b565e7fa7

View File

@@ -6,6 +6,3 @@ use Illuminate\Support\Facades\Route;
Route::get('/auth/google/redirect', [GoogleAuthController::class, 'redirect'])->name('auth.google.redirect'); 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('/api/auth/google/callback', [GoogleAuthController::class, 'callback'])->name('auth.google.callback');
Route::get('/', function () {
return view('welcome');
});