Renamed AVATAR_CLEAN_REMOVED to AVATAR_CLEANUP_DELETED.

This commit is contained in:
Jannis Leidel 2013-03-04 12:28:43 +01:00
parent 68731b6bc6
commit a103d2bd3f
2 changed files with 1 additions and 6 deletions

View file

@ -5,8 +5,3 @@ Django-avatar is a reusable application for handling user avatars. It has the
ability to default to Gravatar if no avatar is found for a certain user.
Django-avatar automatically generates thumbnails and stores them to your default
file storage backend for retrieval later.
Addons to this fork:
----------------
we added a templatetag that returns the avatar model, therefore allowing us to display the avatar in any size using another image cropping/scaling app.

View file

@ -24,4 +24,4 @@ AVATAR_HASH_USERDIRNAMES = getattr(settings, 'AVATAR_HASH_USERDIRNAMES', False)
AVATAR_ALLOWED_FILE_EXTS = getattr(settings, 'AVATAR_ALLOWED_FILE_EXTS', None)
AVATAR_CACHE_TIMEOUT = getattr(settings, 'AVATAR_CACHE_TIMEOUT', 60 * 60)
AVATAR_STORAGE = getattr(settings, 'AVATAR_STORAGE', settings.DEFAULT_FILE_STORAGE)
AVATAR_CLEAN_REMOVED = getattr(settings, 'AVATAR_CLEAN_REMOVED', False)
AVATAR_CLEANUP_DELETED = getattr(settings, 'AVATAR_CLEANUP_DELETED', False)