remove tp/storage_backends.py

This commit is contained in:
Trent Palmer 2022-02-18 16:08:30 -08:00
parent d032d257d1
commit aef867a9c6
1 changed files with 0 additions and 18 deletions

View File

@ -1,18 +0,0 @@
from storages.backends.s3boto3 import S3Boto3Storage
# from django.conf import settings
class StaticStorage(S3Boto3Storage):
location = 'static'
default_acl = 'public-read'
class PublicMP3Storage(S3Boto3Storage):
location = 'mp3'
default_acl = 'public-read'
# file_overwrite = False
class PublicImageStorage(S3Boto3Storage):
location = 'images'
default_acl = 'public-read'