mirror of
https://github.com/jazzband/django-avatar.git
synced 2026-03-16 22:20:30 +00:00
Renamed AVATAR_CLEAN_REMOVED to AVATAR_CLEANUP_DELETED.
This commit is contained in:
parent
68731b6bc6
commit
a103d2bd3f
2 changed files with 1 additions and 6 deletions
|
|
@ -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.
|
||||
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue