8 lines
247 B
Python
8 lines
247 B
Python
from django.core.files.storage import FileSystemStorage
|
|
|
|
class FileBasedStorage(FileSystemStorage):
|
|
def __init__(self, *args, **kwargs):
|
|
super(FileBasedStorage, self).__init__(*args, **kwargs)
|
|
self.location='document_storage'
|
|
|