Feature: Built django-images into Pinry

This commit is contained in:
winkidney
2018-08-25 23:43:52 -07:00
parent f85a1e7301
commit a59f3cf9eb
16 changed files with 609 additions and 6 deletions

View File

@@ -0,0 +1,5 @@
from django.conf import settings
IMAGE_PATH = getattr(settings, 'IMAGE_PATH', None)
IMAGE_SIZES = getattr(settings, 'IMAGE_SIZES', {})
IMAGE_AUTO_DELETE = getattr(settings, 'IMAGE_AUTO_DELETE', True)