Add user avatar system and fix WHOIS parsing/cron synchronization
- Add avatar upload with Gravatar fallback and initials - Fix false "available" detection for registered domains - Clean up WHOIS status parsing and server display - Update cron job to sync all WHOIS fields - Fix TLD cache and .me domain parsing issues
This commit is contained in:
@@ -137,6 +137,8 @@ $router->get('/profile/delete', [ProfileController::class, 'delete']);
|
||||
$router->get('/profile/resend-verification', [ProfileController::class, 'resendVerification']);
|
||||
$router->post('/profile/logout-other-sessions', [ProfileController::class, 'logoutOtherSessions']);
|
||||
$router->post('/profile/logout-session/{sessionId}', [ProfileController::class, 'logoutSession']);
|
||||
$router->post('/profile/upload-avatar', [ProfileController::class, 'uploadAvatar']);
|
||||
$router->post('/profile/delete-avatar', [ProfileController::class, 'deleteAvatar']);
|
||||
|
||||
// Two-Factor Authentication management (protected)
|
||||
$router->get('/2fa/setup', [TwoFactorController::class, 'setup']);
|
||||
|
||||
Reference in New Issue
Block a user