10 lines
305 B
Python
10 lines
305 B
Python
from django.core.files.storage import FileSystemStorage
|
|
|
|
from storage.conf.settings import FILESTORAGE_LOCATION
|
|
|
|
class FileBasedStorage(FileSystemStorage):
|
|
def __init__(self, *args, **kwargs):
|
|
super(FileBasedStorage, self).__init__(*args, **kwargs)
|
|
self.location=FILESTORAGE_LOCATION
|
|
|