mirror of
https://github.com/thecyberlearn/quantum-ai-v3.git
synced 2026-08-18 10:52:56 +00:00
💰 Remove 50 AED welcome bonus from user registration
• Remove automatic 50 AED wallet bonus for new users • Update registration success message to remove bonus reference • Users now start with 0 AED balance (model default) • Cleaner registration process without misleading bonuses • Users must top up wallet to use paid agents 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
962d58d37e
commit
3e1136acfa
@ -170,11 +170,8 @@ def register_view(request):
|
||||
user.email_verified = True
|
||||
user.save()
|
||||
|
||||
# Add initial wallet balance for new users
|
||||
user.add_balance(50, "Welcome bonus - 50 AED to get started!")
|
||||
|
||||
login(request, user)
|
||||
messages.success(request, f'Welcome {user.username}! Your account has been created and you\'ve received 50 AED welcome bonus.')
|
||||
messages.success(request, f'Welcome {user.username}! Your account has been created successfully.')
|
||||
return redirect('core:homepage')
|
||||
except Exception as e:
|
||||
logger.error(f"Error creating account for {email}: {str(e)}")
|
||||
|
||||
Loading…
Reference in New Issue
Block a user