refactor: consolidate Redis config, validators, tests, and serializer logic #63
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This commit groups several improvements and refactorings across the project:
Redis Configuration
REDIS_URL
variable with distinctREDIS_HOST
andREDIS_PORT
environment variables for clearer, more flexible setup across environments.save
method on theUser
model that improperly setlast_login
; rely on Django’s authentication backend to manage this field.Validators
validators.py
(user-related validation logic) from the core project directory into theuser
application for better modularization and discoverability.Tests
user/validators.py
covering:UppercaseValidator
LowercaseValidator
NumericValidator
SpecialCharacterValidator
AsciiValidator
Serializers & Manager Logic
PromoManager
filtering by restructuring age and country query conditions.Promo
model properties (is_available
,get_available_unique_codes
) for readability and consistency.business
,core
,user
) to remove redundant validations already handled by DRF, simplify complex conditionals (e.g.,MultiCountryField
), and assume authenticated context inBaseUserPromoSerializer
.user
app.