mirror of
https://github.com/jazzband/django-categories.git
synced 2026-03-16 22:30:24 +00:00
11 lines
237 B
Python
11 lines
237 B
Python
|
|
# Storages used for testing THUMBNAIL_STORAGE and THUMBNAIL_STORAGE_ALIAS
|
||
|
|
from django.core.files.storage import FileSystemStorage
|
||
|
|
|
||
|
|
|
||
|
|
class MyTestStorage(FileSystemStorage):
|
||
|
|
pass
|
||
|
|
|
||
|
|
|
||
|
|
class MyTestStorageAlias(FileSystemStorage):
|
||
|
|
pass
|