feat: add resend email verification

This commit is contained in:
2025-09-08 18:15:59 +03:30
parent 03d44e027f
commit 01813c8d47
2 changed files with 41 additions and 0 deletions
+1
View File
@@ -31,6 +31,7 @@
Route::post('verify-email-code','verifyEmailCode');
Route::post('login', 'login');
Route::post('register', 'register');
Route::post('resend-email-verification', [UserController::class, 'resendEmailVerification']);
Route::post('/login-google', 'googleLogin');
Route::get('/oauth/callback', 'oauthCallback');