Skip to content

Commit

Permalink
Changed some configuration related to s3
Browse files Browse the repository at this point in the history
  • Loading branch information
riadelimemmedov committed Feb 16, 2024
1 parent 9966dc6 commit 6db8b14
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion backend/apps/users/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
from django.db import models
from django.utils import timezone
from django.utils.translation import gettext_lazy as _
from django_extensions.db.models import TimeStampedModel

from config.helpers import is_valid_wallet_address

Expand Down
2 changes: 1 addition & 1 deletion backend/config/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@
}

# !S3 Storage
USE_S3 = config("USE_S3", default=True, cast=bool)
USE_S3 = config("USE_S3", cast=bool)
if USE_S3:
# aws settings
AWS_ACCESS_KEY_ID = config("AWS_ACCESS_KEY_ID")
Expand Down

0 comments on commit 6db8b14

Please sign in to comment.