mirror of
https://github.com/jazzband/django-avatar.git
synced 2026-03-16 22:20:30 +00:00
make default for AVATAR_EXPOSE_USERNAMES False. Relates to #181
This commit is contained in:
parent
c89f7043c6
commit
3e12122a9c
2 changed files with 2 additions and 2 deletions
|
|
@ -19,7 +19,7 @@ class AvatarConf(AppConf):
|
|||
THUMB_QUALITY = 85
|
||||
HASH_FILENAMES = False
|
||||
HASH_USERDIRNAMES = False
|
||||
EXPOSE_USERNAMES = True
|
||||
EXPOSE_USERNAMES = False
|
||||
ALLOWED_FILE_EXTS = None
|
||||
CACHE_TIMEOUT = 60 * 60
|
||||
STORAGE = settings.DEFAULT_FILE_STORAGE
|
||||
|
|
|
|||
|
|
@ -124,7 +124,7 @@ appear on the site. Listed below are those settings:
|
|||
|
||||
Puts the User's username field in the URL path when ``True``. Set to
|
||||
``False`` to use the User's primary key instead, preventing their email
|
||||
from being searchable on the web. Defaults to ``True``.
|
||||
from being searchable on the web. Defaults to ``False``.
|
||||
|
||||
.. py:data:: AVATAR_FACEBOOK_GET_ID
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue