9 lines
286 B
Python
Executable File
9 lines
286 B
Python
Executable File
from django.core.files.storage import FileSystemStorage
|
|
|
|
class DocumentStorage(FileSystemStorage):
|
|
def __init__(self, *args, **kwargs):
|
|
super(DocumentStorage, self).__init__(*args, **kwargs)
|
|
self.location='document_storage'
|
|
self.base_url='document_storage'
|
|
|