fix(routes): update Google auth callback route to match expected path

This commit is contained in:
2026-07-27 13:39:56 -03:00
parent 8b26a2b63e
commit 8a19b0136d

View File

@@ -4,5 +4,5 @@ use App\Domains\Auth\Controllers\GoogleAuthController;
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('/auth/google/callback', [GoogleAuthController::class, 'callback'])->name('auth.google.callback');