From aef867a9c660a10630b875d81a3e62f25fd3c19f Mon Sep 17 00:00:00 2001 From: Trent Palmer Date: Fri, 18 Feb 2022 16:08:30 -0800 Subject: [PATCH] remove tp/storage_backends.py --- tp/storage_backends.py | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 tp/storage_backends.py diff --git a/tp/storage_backends.py b/tp/storage_backends.py deleted file mode 100644 index 33b8e73..0000000 --- a/tp/storage_backends.py +++ /dev/null @@ -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'