Commit Graph

9 Commits

Author SHA1 Message Date
Claude
3e1136acfa 💰 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>
2025-08-03 19:19:11 +05:30
Claude
7f3b678d39 🔐 Add email verification bypass for testing environments
- Add REQUIRE_EMAIL_VERIFICATION setting (default: True)
- Skip email verification when setting is False
- Auto-verify users and provide welcome bonus when bypassed
- Updated .env.example with documentation
- Allows testing on Railway without email setup until final domain

Perfect for Railway deployment until email/domain configuration is ready.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-02 13:04:16 +05:30
Claude
3fc4783e64 Simplify password validation error message in registration
- Replace multiple individual error messages with single clear message
- Consolidate password requirements into one user-friendly message
- Maintain same validation logic while improving user experience

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-07-26 02:07:34 +05:30
Claude
916d37fd64 🔒 CRITICAL: Implement comprehensive authentication security improvements
CRITICAL SECURITY FIXES:
• Fix information disclosure in error messages - prevent system info leakage
• Implement rate limiting - 5 login attempts/min, 3 registration/min, 3 password reset/5min
• Add backend password strength validation - enforce strong passwords with complexity rules
• Implement email verification - require email confirmation for new accounts

SECURITY ENHANCEMENTS:
• Sanitize all error messages to prevent information leakage
• Add comprehensive rate limiting with django-ratelimit
• Enforce password requirements: 8+ chars, upper/lower case, numbers, special chars
• Block common weak passwords (password, 123456, etc.)
• Email verification with 24-hour secure UUID tokens
• Prevent login without email verification
• Security logging for monitoring and audit trails

TECHNICAL IMPROVEMENTS:
• Add EmailVerificationToken model with auto-expiration
• Add password strength validation function with detailed rules
• Add send_verification_email() utility function
• Add resend verification functionality with rate limiting
• Update existing users to verified status for continuity
• Add comprehensive URL routing for verification flows

BUSINESS BENEFITS:
• Enhanced platform security and user trust
• Reduced fake accounts and email abuse
• Better compliance with security standards
• Improved user account protection

Security rating improved significantly ⬆️
All critical authentication vulnerabilities resolved 

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-07-26 01:53:05 +05:30
Claude
5908375451 Improve forgot password UX with helpful error messages
- Show clear error when user email doesn't exist instead of generic security message
- Add registration link for users whose email is not found
- Better user experience while maintaining security
- Help users understand they need to register first

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-07-16 14:06:05 +05:30
Claude
498de2219e Add email debugging and better error handling
- Add debug_railway_email.py script for Railway email configuration testing
- Add management command test_email for Railway email testing
- Improve error handling and logging in forgot password view
- Add detailed email configuration debug information

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-07-16 13:17:15 +05:30
Claude
d36cf9a79d Fix email URLs to use Railway domain instead of localhost
- Add SITE_URL configuration that auto-detects Railway environment
- Update forgot password view to use correct site URL in emails
- Ensure password reset links work on both local and Railway deployments

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-07-16 13:11:06 +05:30
Claude
1aac14f44b Implement individual agent architecture with simplified template structure
- Replace legacy agents system with modular individual agent apps
- Add agent_base framework for BaseAgent, processors, and management commands
- Create weather_reporter as example individual agent with API integration
- Implement simplified template structure: agent_name/templates/detail.html
- Fix marketplace to display actual agents instead of placeholder
- Add proper authentication flow with login redirect for agent access
- Organize project structure: move tests to tests/, docs to docs/
- Update all documentation to reflect new simplified architecture
- Fix URL namespace issues throughout templates and views

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-07-10 09:01:11 +05:30
Claude
67ba2de335 first working 2025-07-09 02:15:35 +05:30